You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crates/chat-cli/src/constants.rs
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -22,15 +22,20 @@ pub mod ui_text {
22
22
23
23
/// Changelog header text
24
24
pubfnchangelog_header() -> String{
25
-
format!("{}", color_print::cstr! {"<magenta,bold>What's New in Amazon Q CLI</magenta,bold>\n\n"})
25
+
format!(
26
+
"{}",
27
+
color_print::cstr! {"<magenta,bold>What's New in Amazon Q CLI</magenta,bold>\n\n"}
28
+
)
26
29
}
27
30
28
-
29
31
/// Trust all tools warning text
30
32
pubfntrust_all_warning() -> String{
31
-
format!("{}", color_print::cstr! {"<green!>All tools are now trusted (<red!>!</red!>). Amazon Q will execute tools <bold>without</bold> asking for confirmation.\
33
+
format!(
34
+
"{}",
35
+
color_print::cstr! {"<green!>All tools are now trusted (<red!>!</red!>). Amazon Q will execute tools <bold>without</bold> asking for confirmation.\
32
36
\nAgents can sometimes do unexpected things so understand the risks.</green!>
33
-
\nLearn more at https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/command-line-chat-security.html#command-line-chat-trustall-safety"})
37
+
\nLearn more at https://docs.aws.amazon.com/amazonq/latest/qdeveloper-ug/command-line-chat-security.html#command-line-chat-trustall-safety"}
0 commit comments