diff --git a/compose.yaml b/compose.yaml index d3458c8..aeff74b 100644 --- a/compose.yaml +++ b/compose.yaml @@ -7,7 +7,7 @@ services: PSN_DEFAULT_UDP_MCAST_ADDRESS: "236.10.10.10" WEB_SERVER_PORT: 8000 OSC_SERVER_PORT: 9000 - NUM_TRACKERS: 3 + NUM_TRACKERS: 0 volumes: - spot-data:/data diff --git a/frontend/src/components/Container.svelte b/frontend/src/components/Container.svelte index 787cd19..2f08b91 100644 --- a/frontend/src/components/Container.svelte +++ b/frontend/src/components/Container.svelte @@ -8,10 +8,7 @@ let ws: WebSocket | null = $state(null); let image: HTMLImageElement | null = $state(null); - let trackers: TrackerData[] = $state([ - { id: 1, x: 0, y: 0, z: 0 }, - { id: 2, x: 0, y: 0, z: 0 }, - ]); + let trackers: TrackerData[] = $state([]); let width = $state(0); let height = $state(0); diff --git a/frontend/src/components/Modal.svelte b/frontend/src/components/Modal.svelte index b44efe7..91a2961 100644 --- a/frontend/src/components/Modal.svelte +++ b/frontend/src/components/Modal.svelte @@ -21,7 +21,7 @@ class="absolute left-0 top-0 z-50 m-0 h-full max-h-full w-full max-w-full p-0 open:bg-black/80" >