We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 303560e commit c9d9636Copy full SHA for c9d9636
src/components/AppLoader/AppLoader.component.tsx
@@ -72,7 +72,7 @@ export const AppLoader = (props: Props) => {
72
let message = 'The application could not be loaded.';
73
if (error && error instanceof DisplayException) {
74
logError((error as any).innerError);
75
- message += ` ${error.toString()}`;
+ message += ` ${(error as any).message}`;
76
} else {
77
logError(error);
78
if (process.env.NODE_ENV !== environments.prod) {
0 commit comments