From 721d5692d66a18e291f74c673d40d0681ffd5ecc Mon Sep 17 00:00:00 2001 From: Bogdan Crisan Date: Tue, 26 Nov 2024 18:05:47 +0100 Subject: [PATCH] Use swap as default tab on mobile --- .../components/pages/emojicoin/components/mobile-grid/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/typescript/frontend/src/components/pages/emojicoin/components/mobile-grid/index.tsx b/src/typescript/frontend/src/components/pages/emojicoin/components/mobile-grid/index.tsx index 372ad3513..7d2cf7c56 100644 --- a/src/typescript/frontend/src/components/pages/emojicoin/components/mobile-grid/index.tsx +++ b/src/typescript/frontend/src/components/pages/emojicoin/components/mobile-grid/index.tsx @@ -22,7 +22,7 @@ const DISPLAY_HEADER_ABOVE_CHART = false; const HEIGHT = DISPLAY_HEADER_ABOVE_CHART ? "min-h-[320px]" : "min-h-[365px]"; const MobileGrid = (props: GridProps) => { - const [tab, setTab] = useState(1); + const [tab, setTab] = useState(2); const { t } = translationFunction(); return (