Skip to content

Commit

Permalink
fix flag for arabic
Browse files Browse the repository at this point in the history
  • Loading branch information
jamalsoueidan committed Jun 23, 2024
1 parent bafa0f4 commit 371ac1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/components/filters/LanguageFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
Text,
} from '@mantine/core';
import {IconFlag, IconX} from '@tabler/icons-react';
import {DK, US} from 'country-flag-icons/react/3x2';
import {AE, DK, US} from 'country-flag-icons/react/3x2';
import {useTranslation} from 'react-i18next';
import {useChangeFilter} from './useChangeFilter';

Expand Down Expand Up @@ -67,7 +67,7 @@ export function AddLanguageFilter() {
<Flex gap="xs" align="center">
<Checkbox.Indicator />
<Text>{t('arabic', {ns: 'global'})}</Text>
<DK width={16} height={16} />
<AE width={16} height={16} />
</Flex>
</Checkbox.Card>
</Stack>
Expand Down

0 comments on commit 371ac1a

Please sign in to comment.