From 1a549be89b8d16f225e5ceb90eaecd448d46f8fa Mon Sep 17 00:00:00 2001 From: "nico.benaz" <52411515+nbenaglia@users.noreply.github.com> Date: Sat, 24 May 2025 15:05:43 +0200 Subject: [PATCH] Set namespaces --- src/components/Apps/AppsDevModeNavBar.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/Apps/AppsDevModeNavBar.tsx b/src/components/Apps/AppsDevModeNavBar.tsx index edce516..b5f0593 100644 --- a/src/components/Apps/AppsDevModeNavBar.tsx +++ b/src/components/Apps/AppsDevModeNavBar.tsx @@ -25,11 +25,12 @@ export const AppsDevModeNavBar = () => { navigationControllerAtom ); const theme = useTheme(); + const { t } = useTranslation(['auth', 'core', 'group', 'question', 'tutorial']); const [isNewTabWindow, setIsNewTabWindow] = useState(false); const tabsRef = useRef(null); const [anchorEl, setAnchorEl] = useState(null); const open = Boolean(anchorEl); - const { t } = useTranslation(); + const handleClick = (event) => { setAnchorEl(event.currentTarget); };