From e2c251f7af09cdab7219fe043e23fa739c673df5 Mon Sep 17 00:00:00 2001 From: popovspiridon99 Date: Thu, 25 Sep 2025 10:40:19 +0900 Subject: [PATCH] remove unused block --- client/src/pages/MapTest.tsx | 40 +----------------------------------- 1 file changed, 1 insertion(+), 39 deletions(-) diff --git a/client/src/pages/MapTest.tsx b/client/src/pages/MapTest.tsx index 8f454fc..0896451 100644 --- a/client/src/pages/MapTest.tsx +++ b/client/src/pages/MapTest.tsx @@ -15,7 +15,7 @@ import { Button } from "@fluentui/react-components"; import { Add12Filled, Dismiss12Filled, Map16Regular } from "@fluentui/react-icons"; function MapTest() { - const { mapTab, currentTab, tabOrder } = useAppStore() + const { currentTab, tabOrder } = useAppStore() const { id } = useMapStore() const handleDragEnd = (result: any) => { @@ -94,44 +94,6 @@ function MapTest() { ) - - return ( -
-
- setCurrentTab(data.value as string)} - style={{ borderBottom: '1px solid var(--colorNeutralShadowKey)' }} - > - {Object.entries(mapTab).map(([key]) => ( - }> - {id[key]?.mapLabel ?? `Tab ${key}`} - -
-
- ); } export default MapTest;