Neeraj Gupta пре 1 година
родитељ
комит
d81684a93b
1 измењених фајлова са 7 додато и 1 уклоњено
  1. 7 1
      web/apps/cast/src/pages/index.tsx

+ 7 - 1
web/apps/cast/src/pages/index.tsx

@@ -174,12 +174,18 @@ export default function PairingMode() {
     const router = useRouter();
 
     useEffect(() => {
+        console.log("useEffect for pairing called");
         if (digits.length < 1 || !publicKeyB64 || !privateKeyB64) return;
 
         const interval = setInterval(async () => {
+            console.log("polling for cast data");
             const data = await pollForCastData();
-            if (!data) return;
+            if (!data) {
+                console.log("no data");
+                return;
+            }
             storeCastData(data);
+            console.log("pushing slideshow");
             await router.push("/slideshow");
         }, 1000);