diff --git a/apps/dispatch/app/pilot/page.tsx b/apps/dispatch/app/pilot/page.tsx index d39e0cdc..615694ff 100644 --- a/apps/dispatch/app/pilot/page.tsx +++ b/apps/dispatch/app/pilot/page.tsx @@ -4,7 +4,12 @@ import { Mrt } from "pilot/_components/mrt/Mrt"; import { Chat } from "../_components/left/Chat"; import { Report } from "../_components/left/Report"; import { Dme } from "pilot/_components/dme/Dme"; +import dynamic from "next/dynamic"; +const Map = dynamic(() => import("../dispatch/_components/map/Map"), { + ssr: false, +}); +// ...existing code... const DispatchPage = () => { return (
@@ -16,18 +21,20 @@ const DispatchPage = () => {
- -
-
- -
-
- +
+
+ +
+
+ +
+
); }; +// ...existing code... DispatchPage.displayName = "DispatchPage";