diff options
| author | Leo <[email protected]> | 2025-06-08 18:56:58 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-08 10:56:58 -0700 |
| commit | 9efca40dae2e75477af1a20df4e3e65bf8dfe93d (patch) | |
| tree | 39e10eef42ddfd4b9c73b7c2410dd5bccb5ed900 /packages/cli/src/ui/App.tsx | |
| parent | 584286cfd9b53eee8f1189a3ad98462c77eb8fb9 (diff) | |
feat: Add flow to allow modifying edits during edit tool call (#808)
Diffstat (limited to 'packages/cli/src/ui/App.tsx')
| -rw-r--r-- | packages/cli/src/ui/App.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/cli/src/ui/App.tsx b/packages/cli/src/ui/App.tsx index d0e9efb7..365266f8 100644 --- a/packages/cli/src/ui/App.tsx +++ b/packages/cli/src/ui/App.tsx @@ -355,6 +355,7 @@ export const App = ({ config, settings, startupWarnings = [] }: AppProps) => { key={h.id} item={h} isPending={false} + config={config} /> )), ]} @@ -370,6 +371,7 @@ export const App = ({ config, settings, startupWarnings = [] }: AppProps) => { // HistoryItemDisplay. Refactor later. Use a fake id for now. item={{ ...item, id: 0 }} isPending={true} + config={config} /> ))} </Box> |
