Fix jwt-token

This commit is contained in:
2025-09-23 10:27:11 +02:00
parent cfbe4cc389
commit b3cf353e1f

View File

@@ -36,7 +36,7 @@ class ErrorBoundary extends React.Component {
<details style={{ whiteSpace: 'pre-wrap' }}> <details style={{ whiteSpace: 'pre-wrap' }}>
{this.state.error && this.state.error.toString()} {this.state.error && this.state.error.toString()}
<br /> <br />
{this.state.errorInfo.componentStack} {this.state.errorInfo && this.state.errorInfo.componentStack}
</details> </details>
</div> </div>
); );