Skip to content

Commit

Permalink
fix: underline translations
Browse files Browse the repository at this point in the history
Fixes #736
  • Loading branch information
petyosi committed Mar 7, 2024
1 parent 63e4dbc commit 65c55e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const BoldItalicUnderlineToggles: React.FC = () => {

const boldTitle = boldIsOn ? t('toolbar.removeBold', 'Remove bold') : t('toolbar.bold', 'Bold')
const italicTitle = italicIsOn ? t('toolbar.removeItalic', 'Remove italic') : t('toolbar.italic', 'Italic')
const underlineTitle = underlineIsOn ? t('toolbar.underline', 'Remove underline') : t('toolbar.removeUnderline', 'Underline')
const underlineTitle = underlineIsOn ? t('toolbar.removeUnderline', 'Remove underline') : t('toolbar.underline', 'Underline')

return (
<MultipleChoiceToggleGroup
Expand Down

0 comments on commit 65c55e0

Please sign in to comment.