[web][cast] More logs

This commit is contained in:
Neeraj Gupta 2024-04-30 18:20:01 +05:30
parent 13d5a9f71a
commit d81684a93b

View file

@ -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);