chore(ui): finish eslint v9 migration

This commit is contained in:
psychedelicious
2025-07-17 21:27:27 +10:00
parent 875cde13ae
commit 5d9e078043
49 changed files with 112 additions and 109 deletions

View File

@@ -72,7 +72,7 @@ export const authToastMiddleware: Middleware = () => (next) => (action) => {
description: customMessage,
});
}
} catch (error) {
} catch {
// no-op
}
}

View File

@@ -128,7 +128,6 @@ export const buildOnModelInstallError = (getState: AppGetState, dispatch: AppDis
if (!install) {
dispatch(api.util.invalidateTags([{ type: 'ModelInstalls' }]));
} else {
install.source;
dispatch(
modelsApi.util.updateQueryData('listModelInstalls', undefined, (draft) => {
const modelImport = draft.find((m) => m.id === data.id);