From 97e6aac39d9f50d6b8dfd6ba6ac6274eef5864d9 Mon Sep 17 00:00:00 2001 From: yznahmad Date: Sat, 21 Jun 2025 04:24:21 +0300 Subject: [PATCH] Add 30 n1234 --- webapp/src/components/dashboard/home/servicesSubscriptions.tsx | 2 +- webapp/src/components/dashboard/home/workersJobTypes.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/src/components/dashboard/home/servicesSubscriptions.tsx b/webapp/src/components/dashboard/home/servicesSubscriptions.tsx index 41f9eeb..9d0c637 100644 --- a/webapp/src/components/dashboard/home/servicesSubscriptions.tsx +++ b/webapp/src/components/dashboard/home/servicesSubscriptions.tsx @@ -13,7 +13,7 @@ export default function ServicesSubscriptions() const themeType = useAppSelector((state) => state.themeTypeReducer.value.themeType) // declare global variables const cookies = new Cookies(); - const t = useTranslations('statistics'); + const t = useTranslations(); const locale = cookies.get("NEXT_LOCALE") const isRtl = locale == 'ar' ? true : false const isDark = themeType == 'dark' ? true : false diff --git a/webapp/src/components/dashboard/home/workersJobTypes.tsx b/webapp/src/components/dashboard/home/workersJobTypes.tsx index e810a8d..cf72b7b 100644 --- a/webapp/src/components/dashboard/home/workersJobTypes.tsx +++ b/webapp/src/components/dashboard/home/workersJobTypes.tsx @@ -13,7 +13,7 @@ export default function WorkersJobTypes() const themeType = useAppSelector((state) => state.themeTypeReducer.value.themeType) // declare global variables const cookies = new Cookies(); - const t = useTranslations('statistics'); + const t = useTranslations(); const locale = cookies.get("NEXT_LOCALE") const isRtl = locale == 'ar' ? true : false const isDark = themeType == 'dark' ? true : false