diff --git a/src/ui/markdown.tsx b/src/ui/markdown.tsx index 974cae0b7..20efa6cc2 100644 --- a/src/ui/markdown.tsx +++ b/src/ui/markdown.tsx @@ -310,6 +310,8 @@ export function SimpleErrorBoundary({ }: PropsWithChildren<{ title?: string; message?: string }>) { const [error, reset] = useErrorBoundary(); + console.error(error); + if (error) { return ; } else {