From d70760fde9fd716de44fdd0e0a1a516f54098e6a Mon Sep 17 00:00:00 2001 From: nishantharkut Date: Sun, 5 Apr 2026 03:09:21 +0530 Subject: [PATCH] chore: dummy PR for PR Intelligence webhook QA Touch server bootstrap + Overview (typical post-revert surfaces). No functional change. --- Backend/src/server.ts | 3 +++ Frontend/src/pages/Overview.tsx | 2 ++ 2 files changed, 5 insertions(+) diff --git a/Backend/src/server.ts b/Backend/src/server.ts index 23c856f..242b6a1 100644 --- a/Backend/src/server.ts +++ b/Backend/src/server.ts @@ -21,6 +21,9 @@ import { eventsRouter } from "./routes/events"; import { enforcementRouter } from "./routes/enforcement"; import { autofixRouter } from "./routes/autofix"; +// PR Intelligence QA (dummy): harmless marker on server bootstrap path. Mirrors “feature landed → +// reverted on main → small follow-up touch” so overlap / KG tests have a realistic diff. Delete after QA. + /** Comma-separated in CORS_ORIGIN; first entry is default for non-browser clients. */ function allowedCorsOrigins(): string[] { const raw = process.env.CORS_ORIGIN || "http://localhost:8080,http://127.0.0.1:8080"; diff --git a/Frontend/src/pages/Overview.tsx b/Frontend/src/pages/Overview.tsx index 1b2cc70..fbecd9b 100644 --- a/Frontend/src/pages/Overview.tsx +++ b/Frontend/src/pages/Overview.tsx @@ -20,6 +20,8 @@ import { import { useRealtimeUpdates, formatCacheEventTime } from "@/hooks/useRealtimeUpdates"; import { startGithubOAuth as oauthNav } from "@/lib/githubOAuth"; +// PR Intelligence QA (dummy): overview page is a common conflict surface when re-introducing UX after a revert. + const HealthBar = ({ score, max }: { score: number; max: number }) => (