Skip to content

Commit

Permalink
fix: remove mention markdown from notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
olexh committed Jul 2, 2024
1 parent 03b9a13 commit dd2d212
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions utils/convert-notification.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,21 @@ const DESCRIPTIONS: Record<
edit_denied: () => 'Ваша правка була відхилена',
edit_updated: () => 'Ваша правка була оновлена',
comment_reply: (comment_author: string) =>
`Користувач @${comment_author} відповів на Ваш коментар`,
`Користувач **${comment_author}** відповів на Ваш коментар`,
comment_vote: (username: string) =>
`Користувач @${username} оцінив Ваш коментар`,
`Користувач **${username}** оцінив Ваш коментар`,
comment_tag: (comment_author: string) =>
`Користувач @${comment_author} згадав Вас у коментарі`,
`Користувач ${comment_author} згадав Вас у коментарі`,
edit_comment: (username: string) =>
`Користувач @${username} залишив коментар`,
`Користувач **${username}** залишив коментар`,
collection_comment: (username: string) =>
`Користувач @${username} залишив коментар`,
`Користувач **${username}** залишив коментар`,
hikka_update: (description: string) => description,
schedule_anime: (episode: number) => `Вийшов ${episode} епізод аніме`,
follow: (username: string) =>
`Користувач @${username} підписався на Ваш профіль`,
`Користувач **${username}** підписався на Ваш профіль`,
collection_vote: (username: string) =>
`Користувач @${username} оцінив Вашу колекцію`,
`Користувач **${username}** оцінив Вашу колекцію`,
};

const ICONS: Record<API.NotificationType, ReactNode> = {
Expand Down

0 comments on commit dd2d212

Please sign in to comment.