From b746524a1b2e69cad41b55b7d0ba60ec4786d2eb Mon Sep 17 00:00:00 2001 From: Sehoon Shon Date: Fri, 20 Feb 2026 17:21:26 -0500 Subject: [PATCH] fix(cli): re-enable CLI banner (#19741) --- packages/cli/src/ui/AppContainer.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/cli/src/ui/AppContainer.tsx b/packages/cli/src/ui/AppContainer.tsx index 661a96d305..bdf9501c4e 100644 --- a/packages/cli/src/ui/AppContainer.tsx +++ b/packages/cli/src/ui/AppContainer.tsx @@ -2078,8 +2078,7 @@ Logging in with Google... Restarting Gemini CLI to continue. const fetchBannerTexts = async () => { const [defaultBanner, warningBanner] = await Promise.all([ - // TODO: temporarily disabling the banner, it will be re-added. - '', + config.getBannerTextNoCapacityIssues(), config.getBannerTextCapacityIssues(), ]);