Skip to content

Commit 0c0595b

Browse files
committed
Cargo fmt
1 parent 56c1e97 commit 0c0595b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/prompts.rs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,10 +123,14 @@ impl PromptQueue {
123123
let (current_title, current_body) = title_and_body;
124124
match state {
125125
PromptingState::Prompts => {
126-
current_title.as_str().place(Location::Top, Layout::Centered, false);
126+
current_title
127+
.as_str()
128+
.place(Location::Top, Layout::Centered, false);
127129
#[cfg(target_os = "nanos")]
128130
{
129-
current_body.as_str().place(Location::Custom(15), Layout::Centered, false);
131+
current_body
132+
.as_str()
133+
.place(Location::Custom(15), Layout::Centered, false);
130134
}
131135
#[cfg(not(target_os = "nanos"))]
132136
{

0 commit comments

Comments
 (0)