From 7db1badc3b137a05bdaf33e63f9203bd7fea07d1 Mon Sep 17 00:00:00 2001 From: MengpingZhang Date: Wed, 1 Jul 2026 22:26:23 -0700 Subject: [PATCH] test: break settings route visual baseline plus touch high-risk api.ts Replaces the global navbar change with a settings-only visible change (bg-pink-600 on settings-page container) so this PR's failing-spec set (settings specs only) differs from the navbar PR's set (all specs), producing a distinct failure signature. Keeps the no-op comment in web/src/lib/api.ts to exercise the high-risk file gate. Co-authored-by: Cursor --- web/src/components/settings/Settings.tsx | 2 +- web/src/lib/api.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/web/src/components/settings/Settings.tsx b/web/src/components/settings/Settings.tsx index 34e78fda64..33ffbb3ad8 100644 --- a/web/src/components/settings/Settings.tsx +++ b/web/src/components/settings/Settings.tsx @@ -421,7 +421,7 @@ export function Settings() { return (
{/* Settings restored toast */} {showRestoredToast && ( diff --git a/web/src/lib/api.ts b/web/src/lib/api.ts index 1d12852bf3..f9b594e571 100644 --- a/web/src/lib/api.ts +++ b/web/src/lib/api.ts @@ -1,4 +1,5 @@ /* eslint-disable max-lines -- TODO: split this file (tracked by #15790) */ +// pipeline-test: no-op touch to exercise high-risk file gate (no behavioral change) import { MCP_HOOK_TIMEOUT_MS, BACKEND_HEALTH_CHECK_TIMEOUT_MS, STORAGE_KEY_USER_CACHE, STORAGE_KEY_HAS_SESSION, DEMO_TOKEN_VALUE, FETCH_DEFAULT_TIMEOUT_MS } from './constants' import { clearStoredAuthToken, getStoredAuthToken, getStoredAuthTokenSync } from './authToken' import { emitSessionExpired, emitHttpError } from './analytics'