Merge remote-tracking branch 'origin/master' into kunal/remove-e2e-auth-bypass

This commit is contained in:
Arjun (OpenClaw)
2026-02-07 19:25:41 +00:00
25 changed files with 754 additions and 94 deletions

View File

@@ -3,7 +3,9 @@
// IMPORTANT: keep this file dependency-free (no `"use client"`, no React, no Clerk imports)
// so it can be used from both client and server/edge entrypoints.
export function isLikelyValidClerkPublishableKey(key: string | undefined): key is string {
export function isLikelyValidClerkPublishableKey(
key: string | undefined,
): key is string {
if (!key) return false;
// Clerk publishable keys look like: pk_test_... or pk_live_...