diff --git a/src/routes/-/RootLayout/components/Navigation/Navigation.tsx b/src/routes/-/RootLayout/components/Navigation/Navigation.tsx index 04b473b..f9fb12e 100644 --- a/src/routes/-/RootLayout/components/Navigation/Navigation.tsx +++ b/src/routes/-/RootLayout/components/Navigation/Navigation.tsx @@ -215,7 +215,10 @@ export default function Navigation() { entranceDelay={HORIZONTAL_ENTRANCE_DELAYS[index]} onClick={ item.isMenu - ? () => setMenuOpen((v) => (v ? 0 : Math.random())) + ? () => { + tg.hapticFeedback.click(); + setMenuOpen((v) => (v ? 0 : Math.random())); + } : active ? () => {} : () => navigateRoute(item.route!)