diff --git a/apps/dispatch/app/(app)/dispatch/page.tsx b/apps/dispatch/app/(app)/dispatch/page.tsx index a97702f8..648945fc 100644 --- a/apps/dispatch/app/(app)/dispatch/page.tsx +++ b/apps/dispatch/app/(app)/dispatch/page.tsx @@ -7,6 +7,7 @@ import dynamic from "next/dynamic"; import { Chat } from "../../_components/left/Chat"; import { Report } from "../../_components/left/Report"; import { SituationBoard } from "_components/left/SituationBoard"; +import { BugReport } from "_components/left/BugReport"; const Map = dynamic(() => import("../../_components/map/Map"), { ssr: false }); @@ -22,6 +23,9 @@ const DispatchPage = () => {
+
+ +
diff --git a/apps/dispatch/app/(app)/pilot/page.tsx b/apps/dispatch/app/(app)/pilot/page.tsx index 05e3bdb9..015ec84e 100644 --- a/apps/dispatch/app/(app)/pilot/page.tsx +++ b/apps/dispatch/app/(app)/pilot/page.tsx @@ -12,6 +12,7 @@ import { getConnectedAircraftsAPI } from "_querys/aircrafts"; import { checkSimulatorConnected } from "@repo/shared-components"; import { SimConnectionAlert } from "(app)/pilot/_components/SimConnectionAlert"; import { SettingsBoard } from "_components/left/SettingsBoard"; +import { BugReport } from "_components/left/BugReport"; const Map = dynamic(() => import("_components/map/Map"), { ssr: false, @@ -37,6 +38,9 @@ const PilotPage = () => {
+
+ +
diff --git a/apps/dispatch/app/_components/left/BugReport.tsx b/apps/dispatch/app/_components/left/BugReport.tsx new file mode 100644 index 00000000..7f207153 --- /dev/null +++ b/apps/dispatch/app/_components/left/BugReport.tsx @@ -0,0 +1,16 @@ +import { Bug } from "lucide-react"; + +export const BugReport = () => { + return ( +
+ + + +
+ ); +};