Skip to content

Commit 1247516

Browse files
committed
Remove min-h on map
1 parent 36b0423 commit 1247516

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

packages/react/src/components/StationsMap.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ import { keepPreviousData } from "@tanstack/react-query";
2121
import { useStation } from "../hooks/use-station.js";
2222
import { useStations } from "../hooks/use-stations.js";
2323
import { useDebouncedCallback } from "../hooks/use-debounced-callback.js";
24-
import { useNeapsConfig } from "../provider.js";
2524
import { useDarkMode } from "../hooks/use-dark-mode.js";
2625
import { useThemeColors } from "../hooks/use-theme-colors.js";
2726
import { TideConditions } from "./TideConditions.js";
@@ -198,7 +197,7 @@ export const StationsMap = forwardRef<MapRef, StationsMapProps>(function Station
198197
}, []);
199198

200199
return (
201-
<div className={`relative w-full h-full min-h-96 ${className ?? ""}`}>
200+
<div className={`relative w-full h-full ${className ?? ""}`}>
202201
<Map
203202
ref={ref}
204203
{...mapProps}

0 commit comments

Comments
 (0)