From d4a6aa2d3bcdecd77438d38e1c793a80a772590c Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Sat, 18 Feb 2023 23:29:17 +0800 Subject: [PATCH] Only show alert if user typed something --- src/pages/public.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/public.jsx b/src/pages/public.jsx index 4782412d..8831be08 100644 --- a/src/pages/public.jsx +++ b/src/pages/public.jsx @@ -83,7 +83,7 @@ function Public({ local, ...props }) { 'Enter a new instance e.g. "mastodon.social"', ); if (!/\./.test(newInstance)) { - alert('Invalid instance'); + if (newInstance) alert('Invalid instance'); return; } if (newInstance) {