From f64ca86d45308a9f0e8f3f305b5d0a225fdd1002 Mon Sep 17 00:00:00 2001 From: Joe Karow <58997957+JoeKarow@users.noreply.github.com> Date: Tue, 19 Mar 2024 20:24:46 -0400 Subject: [PATCH] fix translation --- packages/ui/components/sections/LocationCard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/ui/components/sections/LocationCard.tsx b/packages/ui/components/sections/LocationCard.tsx index b76f7f8094..ac9c0e9bd6 100644 --- a/packages/ui/components/sections/LocationCard.tsx +++ b/packages/ui/components/sections/LocationCard.tsx @@ -176,7 +176,7 @@ export const LocationCard = ({ remoteOnly, locationId, edit }: LocationCardProps {t('services', { ns: 'common' })} {remoteServCategories.map((tsKey) => ( - {t(tsKey, { ns: 'service' })} + {t(tsKey, { ns: 'services' })} ))} @@ -254,7 +254,7 @@ export const LocationCard = ({ remoteOnly, locationId, edit }: LocationCardProps {t('services', { ns: 'common' })} {data.services.map((tsKey) => ( - {t(tsKey, { ns: 'service' })} + {t(tsKey, { ns: 'services' })} ))}