fix(home): suppress unused nationalAvgRwm param, add ofstedPending badge branch

This commit is contained in:
Tudor Sitaru
2026-04-13 14:26:55 +01:00
parent 2c13b21360
commit 51310160a8
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -30,7 +30,8 @@ interface SchoolMapProps {
nationalAvgRwm?: number | null;
}
export function SchoolMap({ schools, center, zoom = 13, referencePoint, onMarkerClick, nationalAvgRwm }: SchoolMapProps) {
export function SchoolMap({ schools, center, zoom = 13, referencePoint, onMarkerClick, nationalAvgRwm: _nationalAvgRwm }: SchoolMapProps) {
// TODO: thread _nationalAvgRwm to LeafletMapInner (Task 7)
const wrapperRef = useRef<HTMLDivElement>(null);
const [isFullscreen, setIsFullscreen] = useState(false);