mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-09 12:51:09 -07:00
fix(ui): suppress redundant failure note when tool error note is shown (#21078)
This commit is contained in:
@@ -596,7 +596,10 @@ export const useGeminiStream = (
|
||||
if (!isLowErrorVerbosity || config.getDebugMode()) {
|
||||
return;
|
||||
}
|
||||
if (lowVerbosityFailureNoteShownRef.current) {
|
||||
if (
|
||||
lowVerbosityFailureNoteShownRef.current ||
|
||||
suppressedToolErrorNoteShownRef.current
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user