chore: don't name unused errors in catch expressions (#2591)

This commit is contained in:
Braden MacDonald
2025-11-12 18:11:22 -05:00
committed by GitHub
parent a5d65abea2
commit e10ab270dd
50 changed files with 110 additions and 110 deletions

View File

@@ -59,7 +59,7 @@ const LoadingButton: React.FC<LoadingButtonProps> = ({
setState('pending');
try {
await onClick(e);
} catch (err) {
} catch {
// Do nothing
} finally {
if (componentMounted.current) {