diff options
Diffstat (limited to 'packages/cli/src')
| -rw-r--r-- | packages/cli/src/ui/App.tsx | 32 |
1 files changed, 15 insertions, 17 deletions
diff --git a/packages/cli/src/ui/App.tsx b/packages/cli/src/ui/App.tsx index de1f0bf9..bd009e77 100644 --- a/packages/cli/src/ui/App.tsx +++ b/packages/cli/src/ui/App.tsx @@ -334,24 +334,22 @@ export const App = ({ showAutoAcceptIndicator ? <AutoAcceptIndicator /> : undefined } /> - {isInputActive && ( - <Box - marginTop={1} - display="flex" - justifyContent="space-between" - width="100%" - > - <Box> - <> - <Text color={Colors.SubtleComment}>cwd: </Text> - <Text color={Colors.LightBlue}> - {shortenPath(config.getTargetDir(), 70)} - </Text> - </> - </Box> - {showAutoAcceptIndicator && <AutoAcceptIndicator />} + <Box + marginTop={1} + display="flex" + justifyContent="space-between" + width="100%" + > + <Box> + <> + <Text color={Colors.SubtleComment}>cwd: </Text> + <Text color={Colors.LightBlue}> + {shortenPath(config.getTargetDir(), 70)} + </Text> + </> </Box> - )} + {showAutoAcceptIndicator && <AutoAcceptIndicator />} + </Box> {isInputActive && ( <> <InputPrompt |
