Files
yaowenc2 4281c04afb
Build and Push Docker Image / build-amd64 (push) Has been cancelled
Build and Push Docker Image / build-arm64 (push) Has been cancelled
Build and Push Docker Image / merge-manifests (push) Has been cancelled
Build and Push Docker Image / push-to-ecr (push) Has been cancelled
fix(cloud): address PR review — security, formatting, and cleanup
- Refuse to send/receive postMessage when parent origin is unknown (no wildcard fallback)
- Validate INSTANCE_INFO fields instead of unsafe double-cast
- Fix stale ref capture in cleanup closure
- Fix CSRF inconsistency in refreshAccessToken
- Simplify redundant useMemo conditional in InsforgeDashboard
- Fix prettier formatting on index.html
2026-04-06 11:46:00 -07:00

20 lines
672 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>InsForge Dashboard</title>
</head>
<body style="background: #0a0a0a">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>