From 360cbc539cc42581740a69145b6e3e8abb4a7a90 Mon Sep 17 00:00:00 2001 From: martines3000 Date: Fri, 20 Dec 2024 12:44:59 +0100 Subject: [PATCH] chore: add missing tanstack query key --- apps/frontend/src/app/(core)/page.tsx | 8 +++++++- apps/frontend/src/components/Navbar/index.tsx | 2 +- apps/frontend/src/hooks/useCollateralReserves.ts | 1 + 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/apps/frontend/src/app/(core)/page.tsx b/apps/frontend/src/app/(core)/page.tsx index c728ba40..d275c593 100644 --- a/apps/frontend/src/app/(core)/page.tsx +++ b/apps/frontend/src/app/(core)/page.tsx @@ -12,7 +12,13 @@ export default function Home() { const mobile = isMobile(userAgent); return (
- + {mobile ? ( +
+ This page is not available on mobile devices. +
+ ) : ( + + )}
); } diff --git a/apps/frontend/src/components/Navbar/index.tsx b/apps/frontend/src/components/Navbar/index.tsx index 392b6a5c..c80324ec 100644 --- a/apps/frontend/src/components/Navbar/index.tsx +++ b/apps/frontend/src/components/Navbar/index.tsx @@ -229,7 +229,7 @@ export const Navbar = ({ mobile = false }: { mobile?: boolean }) => {
- + {!mobile && }