chore: upgrade to eslint v9 (#2574)

This commit is contained in:
Michael Thomas
2026-03-16 12:12:30 -04:00
committed by GitHub
parent 40e02bba6a
commit 36243a0deb
84 changed files with 916 additions and 883 deletions

View File

@@ -124,7 +124,7 @@ const MovieRequestModal = ({
{ appearance: 'success', autoDismiss: true }
);
}
} catch (e) {
} catch {
addToast(intl.formatMessage(messages.requesterror), {
appearance: 'error',
autoDismiss: true,
@@ -167,7 +167,7 @@ const MovieRequestModal = ({
{ appearance: 'success', autoDismiss: true }
);
}
} catch (e) {
} catch {
setIsUpdating(false);
}
};
@@ -212,7 +212,7 @@ const MovieRequestModal = ({
if (onComplete) {
onComplete(MediaStatus.PENDING);
}
} catch (e) {
} catch {
addToast(<span>{intl.formatMessage(messages.errorediting)}</span>, {
appearance: 'error',
autoDismiss: true,