CEC-3556-fix-eslist (#272)
* ignore test files * update snapshots * fix build errors * fix build errors * fix snap shot * fix more snaps * fix snap shot
This commit is contained in:
@@ -11081,4 +11081,4 @@ exports[`App Route /vehicles unauthenticated 1`] = `
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`;
|
||||
`;
|
||||
@@ -192,6 +192,7 @@ export const CarUpdatesProvider = ({ children }) => {
|
||||
|
||||
applyProgressStatuses(result.statuses);
|
||||
} catch (e) {
|
||||
throw new Error(`Get update progress error. ${e}`);
|
||||
} finally {
|
||||
setBusy(false);
|
||||
}
|
||||
|
||||
@@ -26,7 +26,9 @@ export default class ErrorBoundary extends Component {
|
||||
if (this.state.hasError) {
|
||||
try {
|
||||
logger.error(this.state.error.stack);
|
||||
} catch (e) {}
|
||||
} catch (e) {
|
||||
logger.error(e);
|
||||
}
|
||||
|
||||
if (this.state.error && this.state.error.name === "ChunkLoadError") {
|
||||
reload();
|
||||
|
||||
Reference in New Issue
Block a user