mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-08-09 16:36:40 -07:00
Unused error variables in catch block are not allowed (#24487)
This commit is contained in:
@@ -404,12 +404,12 @@ ${output.result}`;
|
||||
);
|
||||
await removeInputBlocker(browserManager, signal);
|
||||
await removeAutomationOverlay(browserManager, signal);
|
||||
} catch (_err) {
|
||||
} catch {
|
||||
// Ignore errors for individual pages
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (_) {
|
||||
} catch {
|
||||
// Ignore errors for removing the overlays.
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user