Update to ESLint 9

This commit is contained in:
Alejandro Celaya
2024-10-12 20:06:48 +02:00
parent 078c5c8889
commit 94890da48f
8 changed files with 1129 additions and 1323 deletions

View File

@@ -67,7 +67,7 @@ const ImportServersBtn: FCWithDeps<ImportServersBtnConnectProps, ImportServersBt
})
.then(() => {
// Reset input after processing file
(target as { value: string | null }).value = null; // eslint-disable-line no-param-reassign
(target as { value: string | null }).value = null;
})
.catch(onImportError),
[create, onImportError, servers, serversImporter, showModal],