From ed040efac0671b44a721b6f9a86e5a191189a181 Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 27 Jan 2026 15:15:25 -0600 Subject: [PATCH] Add blue border to status badge to verify deployment Testing if changes are being picked up correctly. Co-Authored-By: Claude Opus 4.5 --- frontend/components/PDFReport.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/frontend/components/PDFReport.tsx b/frontend/components/PDFReport.tsx index e11ab38..c456d8a 100755 --- a/frontend/components/PDFReport.tsx +++ b/frontend/components/PDFReport.tsx @@ -75,10 +75,8 @@ const RagStatusBadge: React.FC<{ status: RagStatus }> = ({ status }) => { } return ( - - - {status} - + + {status} ); };