fix lint and remove all eslint overrides

This commit is contained in:
Przemek Więch
2026-04-28 23:39:47 +02:00
parent 36852348a8
commit 3c43a3e23e
6 changed files with 15 additions and 28 deletions

View File

@@ -548,7 +548,7 @@ export function App() {
function renderMainArea() {
switch (state) {
case AppState.SHOWING_CHART:
case AppState.LOADING_MORE:
case AppState.LOADING_MORE: {
const updatedSelection = getSelection(data!.chartData, selection);
return (
<div id="content">
@@ -577,6 +577,7 @@ export function App() {
</SidebarPushable>
</div>
);
}
case AppState.ERROR:
return <ErrorMessage message={error!} />;