From a7f9f2208d87e7a1482dd567d603e1eadf5c33ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivar=20Conradi=20=C3=98sthus?= Date: Tue, 8 Apr 2025 20:27:37 +0200 Subject: [PATCH] fix: add missing import after rebase --- .../layout/MainLayout/NavigationSidebar/NavigationSidebar.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/component/layout/MainLayout/NavigationSidebar/NavigationSidebar.tsx b/frontend/src/component/layout/MainLayout/NavigationSidebar/NavigationSidebar.tsx index b600c9fa31..836b68a954 100644 --- a/frontend/src/component/layout/MainLayout/NavigationSidebar/NavigationSidebar.tsx +++ b/frontend/src/component/layout/MainLayout/NavigationSidebar/NavigationSidebar.tsx @@ -30,6 +30,7 @@ import { ReactComponent as LogoOnlyWhite } from 'assets/img/logo.svg'; import { ReactComponent as LogoOnly } from 'assets/img/logoDark.svg'; import { Link } from 'react-router-dom'; import { useFlag } from '@unleash/proxy-client-react'; +import { useUiFlag } from 'hooks/useUiFlag'; export const MobileNavigationSidebar: FC<{ onClick: () => void;