added DME, fixed sync and bugs. Rewrote setDisplay logic

This commit is contained in:
PxlLoewe
2025-05-19 22:23:15 -07:00
parent 46c58ae127
commit 61e7caf6c8
23 changed files with 776 additions and 242 deletions

View File

@@ -4,10 +4,9 @@ import { Mrt } from "pilot/_components/mrt/Mrt";
import { Chat } from "../_components/left/Chat";
import { Report } from "../_components/left/Report";
import { usePilotConnectionStore } from "_store/pilot/connectionStore";
import { Dme } from "pilot/_components/dme/Dme";
const DispatchPage = () => {
const { activeMission } = usePilotConnectionStore();
return (
<div className="relative flex-1 flex transition-all duration-500 ease w-full">
{/* <MapToastCard2 /> */}
@@ -19,9 +18,9 @@ const DispatchPage = () => {
</div>
</div>
</div>
<div>{JSON.stringify(activeMission)}</div>
<div>
<div className="flex flex-col">
<Mrt />
<Dme />
</div>
</div>
);