Skip to content

Commit

Permalink
chore: remove weird type assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSchoeler committed Aug 23, 2024
1 parent 927710d commit 856c5e6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ const OmnichannelDirectoryPage = (): ReactElement => {
{t('Contacts')}
</Tabs.Item>
<Tabs.Item selected={page === 'chats'} onClick={handleTabClick('chats')}>
{t('Chats' as 'color')}
{t('Chats')}
</Tabs.Item>
<Tabs.Item selected={page === 'calls'} onClick={handleTabClick('calls')}>
{t('Calls' as 'color')}
{t('Calls')}
</Tabs.Item>
</Tabs>
<PageContent>
Expand Down
1 change: 1 addition & 0 deletions packages/i18n/src/locales/en.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -989,6 +989,7 @@
"Channels_list": "List of public channels",
"Channel_what_is_this_channel_about": "What is this channel about?",
"Chart": "Chart",
"Chats": "Chats",
"Chat_button": "Chat button",
"Chat_close": "Chat Close",
"Chat_closed": "Chat closed",
Expand Down
1 change: 1 addition & 0 deletions packages/i18n/src/locales/pt-BR.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -833,6 +833,7 @@
"Channels_list": "Lista de canais públicos",
"Channel_what_is_this_channel_about": "Sobre o que é este canal?",
"Chart": "Gráfico",
"Chats": "Conversas",
"Chat_button": "Botão da conversa",
"Chat_close": "Fechar conversa",
"Chat_closed": "Conversa encerrada",
Expand Down

0 comments on commit 856c5e6

Please sign in to comment.