diff --git a/app/src/frontend/mapContext.ts b/app/src/frontend/mapContext.ts deleted file mode 100644 index c5c5b316..00000000 --- a/app/src/frontend/mapContext.ts +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' - -type UserContextType = { - context: string | null, - setContext: React.Dispatch> -} - -const iUserContextState = { - context: null, - setContext: () => {} -} - -const UserContext = React.createContext(iUserContextState) - -export default UserContext \ No newline at end of file diff --git a/app/src/frontend/mapLayerContext.ts b/app/src/frontend/mapLayerContext.ts deleted file mode 100644 index f07f8a51..00000000 --- a/app/src/frontend/mapLayerContext.ts +++ /dev/null @@ -1,15 +0,0 @@ -import React from 'react' - -type MapLayerContextType = { - context: 'enabled' | 'disabled', - setContext: React.Dispatch> -} - -const iMapLayerContextType = { - context: null, - setContext: () => {} -} - -const MapLayerContext = React.createContext(iMapLayerContextType) - -export default MapLayerContext \ No newline at end of file