diff --git a/packages/cli/src/gemini.tsx b/packages/cli/src/gemini.tsx
index bb58022d22..9b4a3acf8f 100644
--- a/packages/cli/src/gemini.tsx
+++ b/packages/cli/src/gemini.tsx
@@ -4,7 +4,6 @@
* SPDX-License-Identifier: Apache-2.0
*/
-import React from 'react';
import { render } from 'ink';
import { AppContainer } from './ui/AppContainer.js';
import { loadCliConfig, parseArguments } from './config/config.js';
@@ -176,15 +175,10 @@ export async function startInteractiveUI(
);
};
- const instance = render(
-
-
- ,
- {
- exitOnCtrlC: false,
- isScreenReaderEnabled: config.getScreenReader(),
- },
- );
+ const instance = render(, {
+ exitOnCtrlC: false,
+ isScreenReaderEnabled: config.getScreenReader(),
+ });
checkForUpdates()
.then((info) => {