diff --git a/ui/desktop/src/components/ErrorBoundary.tsx b/ui/desktop/src/components/ErrorBoundary.tsx
index 9d5c4827..a71402c7 100644
--- a/ui/desktop/src/components/ErrorBoundary.tsx
+++ b/ui/desktop/src/components/ErrorBoundary.tsx
@@ -22,15 +22,11 @@ export function ErrorUI({ error }) {
- An error occurred. -
+An error occurred.
-+{error.message}@@ -47,7 +43,7 @@ export function ErrorUI({ error }) { export class ErrorBoundary extends React.Component< { children: React.ReactNode }, - { error: Error, hasError: boolean } + { error: Error; hasError: boolean } > { constructor(props: { children: React.ReactNode }) { super(props); @@ -65,7 +61,7 @@ export class ErrorBoundary extends React.Component< render() { if (this.state.hasError) { - return+ return ; } return this.props.children; }