From 88b3264fe3f7c981209f60bdf8225eabd99e44f1 Mon Sep 17 00:00:00 2001 From: Raffson Date: Sat, 18 May 2024 21:54:43 +0200 Subject: [PATCH] Fix TypeScript issues preventing build --- client/src/api/mapZonesSlice.ts | 1 - client/src/components/terrainzones/TerrainZonesLayers.tsx | 1 - 2 files changed, 2 deletions(-) diff --git a/client/src/api/mapZonesSlice.ts b/client/src/api/mapZonesSlice.ts index d92e80cc..979d778d 100644 --- a/client/src/api/mapZonesSlice.ts +++ b/client/src/api/mapZonesSlice.ts @@ -1,7 +1,6 @@ import { RootState } from "../app/store"; import { gameLoaded, gameUnloaded } from "./actions"; import { createSlice } from "@reduxjs/toolkit"; -import { LatLngLiteral } from "leaflet"; import { MapZones } from "./_liberationApi"; interface MapZonesState { diff --git a/client/src/components/terrainzones/TerrainZonesLayers.tsx b/client/src/components/terrainzones/TerrainZonesLayers.tsx index d254ac92..3ebbce6c 100644 --- a/client/src/components/terrainzones/TerrainZonesLayers.tsx +++ b/client/src/components/terrainzones/TerrainZonesLayers.tsx @@ -1,4 +1,3 @@ -import { useGetTerrainZonesQuery } from "../../api/liberationApi"; import { useAppSelector } from "../../app/hooks"; import { LatLngLiteral } from "leaflet"; import { LayerGroup, LayersControl, Polygon } from "react-leaflet";