Set namespaces

This commit is contained in:
nico.benaz 2025-05-24 15:05:43 +02:00 committed by GitHub
parent 388e44e4e7
commit 1a549be89b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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);
};