Skip to content

Commit 8b83fc2

Browse files
feat: depending on the terminal and OS, the link to click would get cut off because of a line wrap and resulting in an invalid url. This change should help accommodate less tech savvy users
1 parent 7705a43 commit 8b83fc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/src/tunnels/code_server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -830,7 +830,7 @@ pub fn print_listening(log: &log::Logger, tunnel_name: &str) {
830830
}
831831
}
832832

833-
let message = &format!("\nOpen this link in your browser {addr}\n");
833+
let message = &format!("\nOpen this link in your browser\n {addr}\n");
834834
log.result(message);
835835
}
836836

0 commit comments

Comments
 (0)