Co-authored-by: turnoffthiscomputer <colin.remi07@gmail.com>
Co-authored-by: thomas-senechal <thomas.senechal@pm.me>
This commit is contained in:
turboblitz
2025-02-16 19:20:45 -08:00
committed by GitHub
parent bf5f8ce166
commit fbce054f57
22 changed files with 6317 additions and 396 deletions

View File

@@ -11,6 +11,7 @@ import { containerStyle, ledContainerStyle, qrContainerStyle } from './utils/sty
import dynamic from 'next/dynamic';
import { initWebSocket } from './utils/websocket';
import { SelfApp, SelfAppBuilder } from '../../common/src/utils/appType';
const QRCodeSVG = dynamic(() => import('qrcode.react').then((mod) => mod.QRCodeSVG), {
ssr: false,
});

View File

@@ -55,6 +55,11 @@ const handleWebSocketMessage =
setProofVerified(false);
setProofStep(QRcodeSteps.PROOF_VERIFIED);
break;
case 'proof_verified':
console.log('[WebSocket] Proof verified.');
setProofVerified(true);
setProofStep(QRcodeSteps.PROOF_VERIFIED);
break;
default:
console.log('[WebSocket] Unhandled mobile status:', data.status);
break;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

5966
sdk/tests/web-app/yarn.lock Normal file

File diff suppressed because it is too large Load Diff