diff options
| author | Abhi <[email protected]> | 2025-06-08 18:01:02 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-08 18:01:02 -0400 |
| commit | 7868ef82299ae1da5a09334f67d57eb3b472563a (patch) | |
| tree | 68e6a007dc0a762ae868cb7313c700686c4a1857 /packages/cli/src/gemini.tsx | |
| parent | 9104ac02f7ac68d84bf9a3a78514bd080c77eec5 (diff) | |
feat: Introduce session context and add session duration stat for `/stats` command (#854)
Diffstat (limited to 'packages/cli/src/gemini.tsx')
| -rw-r--r-- | packages/cli/src/gemini.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/cli/src/gemini.tsx b/packages/cli/src/gemini.tsx index b7df958e..4f30e3da 100644 --- a/packages/cli/src/gemini.tsx +++ b/packages/cli/src/gemini.tsx @@ -6,7 +6,7 @@ import React from 'react'; import { render } from 'ink'; -import { App } from './ui/App.js'; +import { AppWrapper } from './ui/App.js'; import { loadCliConfig } from './config/config.js'; import { readStdin } from './utils/readStdin.js'; import { sandbox_command, start_sandbox } from './utils/sandbox.js'; @@ -95,7 +95,7 @@ export async function main() { if (process.stdin.isTTY && input?.length === 0) { render( <React.StrictMode> - <App + <AppWrapper config={config} settings={settings} startupWarnings={startupWarnings} |
