Skip to content

Commit 6ab5968

Browse files
committed
fix errant dot
1 parent 715291f commit 6ab5968

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/TranslationsModal/index.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@ export const TranslationsModal: React.FC =
4242
...langs,
4343
];
4444

45-
// '@' is HTML escaped code for '@', which breaks table otherwise.
46-
// Why '@' instead of '@'?
47-
// Because getCyrillic transforms it into '&цоммат;'
45+
// '@' is HTML escaped code for '@', which breaks table otherwise.
46+
// Why '@' instead of '@'?
47+
// Because getCyrillic transforms it into '&цоммат;'
4848
item.raw = item.raw.map((item) => (item.replace(/@/g, '@')));
4949

5050
const translates = item.raw.filter((_, i) => (allLangs.includes(validFields[i])));
5151
const tableData = allLangs.reduce((arr, lang, i) => {
5252
if (lang === 'isv') {
5353
return [
5454
[
55-
`{${t('isvEtymologicLatinLang')}.}[B]@ts;b;sw=130px;nowrap`,
55+
`{${t('isvEtymologicLatinLang')}}[B]@ts;b;sw=130px;nowrap`,
5656
`${getLatin(translates[i], '2')}@ts`,
5757
],
5858
[

0 commit comments

Comments
 (0)