Remove map route

This commit is contained in:
Logan Hunt 2022-03-30 15:18:59 -06:00
parent acff469ba0
commit 6aa48ce4a3
Signed by untrusted user who does not match committer: simponic
GPG Key ID: 52B3774857EB24B1
2 changed files with 0 additions and 2 deletions

View File

@ -3,7 +3,6 @@ import L from 'leaflet';
import markerIconPng from 'leaflet/dist/images/marker-icon.png';
import { useEffect, useContext } from 'react';
import { ApiContext } from '../../utils/api_context';
import { AuthContext } from '../../utils/auth_context';
const userPositionBubble = {
color: 'black',

View File

@ -19,7 +19,6 @@ export const Router = () => {
<Route path="admin" element={<Admin />} />
<Route path="signin" element={<SignIn />} />
<Route path="signup" element={<SignUp />} />
<Route path="map" element={<Map />} />
</Routes>
);
};