Skip to content

Commit 567fdc4

Browse files
committed
fix(ui): TUI fixes
1 parent 70316ab commit 567fdc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ pub async fn quote() -> Response {
6464
/// Returns a plain text random quote without any HTML.
6565
pub async fn plain_quote() -> Response {
6666
let Quote { text, author } = random_quote();
67-
let formatted_quote: String = format!("\"{}\"\n - {}", text, author);
67+
let formatted_quote: String = format!("{text}\n\n - {author}\n");
6868
Html(formatted_quote).into_response()
6969
}

0 commit comments

Comments
 (0)