From ec0fd650caed55eb9aaede3eb63b9180dd92e2b8 Mon Sep 17 00:00:00 2001 From: Oliver Date: Tue, 13 Jan 2026 17:19:08 +1100 Subject: [PATCH] Log boundary errors to console (#11125) --- src/frontend/src/components/Boundary.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontend/src/components/Boundary.tsx b/src/frontend/src/components/Boundary.tsx index 119b8fc9eb..8509b1b932 100644 --- a/src/frontend/src/components/Boundary.tsx +++ b/src/frontend/src/components/Boundary.tsx @@ -28,6 +28,7 @@ export function Boundary({ const onError = useCallback( (error: unknown, componentStack: string | undefined, eventId: string) => { console.error(`ERR: Error rendering component: ${label}`); + console.error(error); }, [] );