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:
das31
2023-01-27 16:20:51 -05:00
committed by GitHub
parent de721d9862
commit e031d9f2dd
6 changed files with 807 additions and 477 deletions

View File

@@ -11081,4 +11081,4 @@ exports[`App Route /vehicles unauthenticated 1`] = `
</div>
</div>
</div>
`;
`;

View File

@@ -192,6 +192,7 @@ export const CarUpdatesProvider = ({ children }) => {
applyProgressStatuses(result.statuses);
} catch (e) {
throw new Error(`Get update progress error. ${e}`);
} finally {
setBusy(false);
}

View File

@@ -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();