From b3cf353e1f35ef4506a58fa159d66643f657f595 Mon Sep 17 00:00:00 2001 From: Alexander Borg Date: Tue, 23 Sep 2025 10:27:11 +0200 Subject: [PATCH] Fix jwt-token --- client/src/components/ErrorBoundary.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/ErrorBoundary.jsx b/client/src/components/ErrorBoundary.jsx index 71460aa..0d5e068 100644 --- a/client/src/components/ErrorBoundary.jsx +++ b/client/src/components/ErrorBoundary.jsx @@ -36,7 +36,7 @@ class ErrorBoundary extends React.Component {
{this.state.error && this.state.error.toString()}
- {this.state.errorInfo.componentStack} + {this.state.errorInfo && this.state.errorInfo.componentStack}
);