Skip to content

Commit

Permalink
Merge pull request #463 from intersective/bugfix/CORE-6719/typo-issue…
Browse files Browse the repository at this point in the history
…-in-announcement-create-error-trunk

[CORE-6719] Typo in duplicating announcement channels error message - trunk
  • Loading branch information
sasangachathumal authored Aug 1, 2024
2 parents 9044088 + ec1d89e commit f57f37f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/chat/chat-list/chat-list.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,16 +211,16 @@ export class ChatListComponent {
let alertMessage = '';
switch (channelType) {
case 'cohort':
alertMessage = 'Oops! You already created successfully your cohort wide chat.';
alertMessage = 'Oops! You already successfully created your cohort wide chat.';
break;
case 'direct':
alertMessage = 'Oops! You already started conversation with this user.';
break;
case 'learnerChannel':
alertMessage = 'Oops! You already created successfully your learner announcment chat.';
alertMessage = 'Oops! You already successfully created your learner announcment chat.';
break;
case 'expertChannel':
alertMessage = 'Oops! You already created successfully your expert announcment chat.';
alertMessage = 'Oops! You already successfully created your expert announcment chat.';
break;
}
const existingChannel = this.chatChannels.find((channel) => data.uuid === channel.uuid);
Expand Down

0 comments on commit f57f37f

Please sign in to comment.