Skip to content

Commit 203ee2e

Browse files
authored
Make copy updates to cli main menu (#94)
* make copy updates to cli main menu * fix formatting
1 parent 62f5427 commit 203ee2e

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

components/main_menu.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,20 @@ def main_menu(context: ViewContext):
1414
terminal = context.terminal
1515
while True:
1616
exit_instruction = "⟪ Hit Ctrl+C at any time to exit a menu ⟫"
17-
with terminal.nest(draw_box("CIB Mango Tree") + "\n" + exit_instruction + "\n"):
17+
welcome_message = "Import your datasets to run analysis for likelihood of coordinated inauthentic behavior."
18+
with terminal.nest(
19+
draw_box("CIB Mango Tree")
20+
+ "\n"
21+
+ exit_instruction
22+
+ "\n\n"
23+
+ welcome_message
24+
+ "\n"
25+
):
1826
action = prompts.list_input(
1927
"What would you like to do?",
2028
choices=[
21-
("Import dataset", "new_project"),
22-
("Load existing dataset", "load_project"),
29+
("Import dataset for new project", "new_project"),
30+
("Review existing project", "load_project"),
2331
("Exit", "exit"),
2432
],
2533
)

0 commit comments

Comments
 (0)