diff --git a/client/package.json b/client/package.json index 4fa36a27..6fdc724c 100644 --- a/client/package.json +++ b/client/package.json @@ -32,6 +32,7 @@ "start": "react-scripts start", "build": "react-scripts build && generate-license-file --input package.json --output build/NOTICE", "regenerate-api": "rtk-query-codegen-openapi ./openapi-config.ts", + "lint" : "eslint src", "prepare": "eslint src && license-checker --onlyAllow \"MIT;Apache-2.0;CC0-1.0;BSD-3-Clause;ISC;Custom: https://github.com/tmcw/jsonlint;BSD-2-Clause;Hippocratic-2.1;BSD*;WTFPL\" --excludePrivatePackages --production", "test": "react-scripts test", "eject": "react-scripts eject", diff --git a/client/src/components/liberationmap/LiberationMap.tsx b/client/src/components/liberationmap/LiberationMap.tsx index 4918ab20..a6e067b1 100644 --- a/client/src/components/liberationmap/LiberationMap.tsx +++ b/client/src/components/liberationmap/LiberationMap.tsx @@ -9,10 +9,6 @@ import FrontLinesLayer from "../frontlineslayer"; import SupplyRoutesLayer from "../supplyrouteslayer"; import TgosLayer from "../tgoslayer/TgosLayer"; import { CoalitionThreatZones } from "../threatzones"; -import { - ThreatZonesLayer, - ThreatZoneFilter, -} from "../threatzones/ThreatZonesLayer"; import "./LiberationMap.css"; import { Map } from "leaflet"; import { useEffect, useRef } from "react";