From 12ab831ec961e781417cf941a2b284631a585473 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 25 Mar 2024 11:02:35 -0500 Subject: [PATCH] fix playground --- web/src/pages/UIPlayground.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/src/pages/UIPlayground.tsx b/web/src/pages/UIPlayground.tsx index bec9828c3..62f47fb57 100644 --- a/web/src/pages/UIPlayground.tsx +++ b/web/src/pages/UIPlayground.tsx @@ -77,10 +77,12 @@ function generateRandomMotionAudioData(): MotionData[] { ) { const motion = Math.floor(Math.random() * 101); // Random number between 0 and 100 const audio = Math.random() * -100; // Random negative value between -100 and 0 + const camera = "test_camera"; data.push({ start_time: startTimestamp, motion, audio, + camera, }); }