We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c616f32 commit 35b381fCopy full SHA for 35b381f
openhands/core/cli.py
@@ -618,10 +618,11 @@ def check_folder_security_agreement(current_dir):
618
f'{current_dir}\n\n'
619
'OpenHands may read and execute files in this folder with your permission.'
620
),
621
- style='#ffffff',
+ style=COLOR_GREY,
622
read_only=True,
623
wrap_lines=True,
624
- )
+ ),
625
+ style=f'fg:{COLOR_GREY}',
626
)
627
628
clear()
@@ -786,9 +787,6 @@ def on_event(event: Event) -> None:
786
787
788
if not check_folder_security_agreement(current_dir):
789
# User rejected, exit application
- event_stream.add_event(
790
- ChangeAgentStateAction(AgentState.STOPPED), EventSource.ENVIRONMENT
791
792
return
793
794
# Clear the terminal
0 commit comments