From 2a319b9cf6b643ddb2feca7e198233406623739d Mon Sep 17 00:00:00 2001 From: wearrrrr Date: Mon, 30 Sep 2024 15:02:11 -0500 Subject: [PATCH] forgot to trim the url --- static/ui.js | 1 + 1 file changed, 1 insertion(+) diff --git a/static/ui.js b/static/ui.js index 9591d9d..ed11c14 100644 --- a/static/ui.js +++ b/static/ui.js @@ -151,6 +151,7 @@ function App() { }); const handleSubmit = () => { + this.url = this.url.trim(); // frame.go(this.url) if (!this.url.startsWith("http")) { this.url = "https://" + this.url;