suppress warnings

This commit is contained in:
2025-08-01 11:12:02 +09:00
parent 52ba424a83
commit 4c60d68c3f

View File

@ -33,19 +33,19 @@ export function Layout() {
<NavLink
onClick={() => navigate("/")}
label="Главная"
leftSection={<IconHome2 size="1rem" stroke={1.5} />}
leftSection={<IconHome2 size="16px" stroke={1.5} />}
active={location.pathname === "/"}
/>
<NavLink
onClick={() => navigate("/dictionaries")}
label="Справочники"
leftSection={<IconGauge size="1rem" stroke={1.5} />}
leftSection={<IconGauge size="16px" stroke={1.5} />}
active={location.pathname === "/dictionaries"}
/>
<NavLink
onClick={() => navigate("/drivers")}
label="Водители"
leftSection={<IconUser size="1rem" stroke={1.5} />}
leftSection={<IconUser size="16px" stroke={1.5} />}
active={location.pathname === "/drivers"}
/>
</AppShell.Navbar>