diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 635d86f..7acfd2e 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -2,7 +2,7 @@ import { Outlet } from "react-router-dom";
import useStore from "../store/store";
import { FullScreen, useFullScreenHandle } from "react-full-screen";
import { useEffect } from "react";
-import { ModalContainer } from "./ModalContainer";
+import ModalContainer from "./ModalContainer";
const Layout = () => {
const { loader, setOnFullscreen } = useStore();
diff --git a/src/components/Map/MapGraphic.tsx b/src/components/Map/MapGraphic.tsx
deleted file mode 100644
index 98577c1..0000000
--- a/src/components/Map/MapGraphic.tsx
+++ /dev/null
@@ -1,21 +0,0 @@
-import { useContext, useEffect, useState } from "react";
-import Graphic from "@arcgis/core/Graphic";
-import { MapLayerContext } from "./MapViewContext";
-
-export const MapGraphic = (graphicProperties: __esri.GraphicProperties) => {
- const { graphicsLayer } = useContext(MapLayerContext);
- const [graphic, setGraphic] = useState<__esri.Graphic | undefined>();
-
- useEffect(() => {
- const graphicPoint = new Graphic(graphicProperties);
-
- setGraphic(graphicPoint);
- }, [graphicProperties, graphicsLayer]);
-
- useEffect(() => {
- if (!graphic || !graphicsLayer) return;
- graphicsLayer.add(graphic);
- }, [graphic, graphicsLayer]);
-
- return <>>;
-};
diff --git a/src/components/Map/MapGraphicsLayer.tsx b/src/components/Map/MapGraphicsLayer.tsx
deleted file mode 100644
index 5e70440..0000000
--- a/src/components/Map/MapGraphicsLayer.tsx
+++ /dev/null
@@ -1,36 +0,0 @@
-import { useContext, useEffect, useState } from "react";
-import GraphicsLayer from "@arcgis/core/layers/GraphicsLayer.js";
-import { MapLayerContext, MapViewContext } from "./MapViewContext";
-
-type MapGraphicsLayerProps = {
- children?: React.ReactNode;
-};
-
-export const MapGraphicsLayer = ({ children }: MapGraphicsLayerProps) => {
- const { view } = useContext(MapViewContext);
-
- const [graphicsLayer, setGraphicsLayer] = useState<
- __esri.GraphicsLayer | undefined
- >();
-
- useEffect(() => {
- const _graphicsLayer = new GraphicsLayer();
- // _graphicsLayer.effect = "brightness(0.75) contrast(250%)";
- setGraphicsLayer(_graphicsLayer);
- }, []);
-
- useEffect(() => {
- if (!view || !graphicsLayer) return;
- view.map.add(graphicsLayer);
- }, [view, graphicsLayer]);
-
- return (
- <>
- {graphicsLayer && (
-