Skip to content

Commit

Permalink
fix translation
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeKarow committed Mar 20, 2024
1 parent 1ff0c8a commit f64ca86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ui/components/sections/LocationCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export const LocationCard = ({ remoteOnly, locationId, edit }: LocationCardProps
<Title order={3}>{t('services', { ns: 'common' })}</Title>
<Badge.Group>
{remoteServCategories.map((tsKey) => (
<Badge.Service key={tsKey}>{t(tsKey, { ns: 'service' })}</Badge.Service>
<Badge.Service key={tsKey}>{t(tsKey, { ns: 'services' })}</Badge.Service>
))}
</Badge.Group>
</Stack>
Expand Down Expand Up @@ -254,7 +254,7 @@ export const LocationCard = ({ remoteOnly, locationId, edit }: LocationCardProps
<Title order={3}>{t('services', { ns: 'common' })}</Title>
<Badge.Group>
{data.services.map((tsKey) => (
<Badge.Service key={tsKey}>{t(tsKey, { ns: 'service' })}</Badge.Service>
<Badge.Service key={tsKey}>{t(tsKey, { ns: 'services' })}</Badge.Service>
))}
</Badge.Group>
</Stack>
Expand Down

0 comments on commit f64ca86

Please sign in to comment.