From a9ba2d78e20de86e7e5faee7f1cc127acdd848ca Mon Sep 17 00:00:00 2001 From: mircearoata Date: Sat, 20 Apr 2024 21:31:53 +0200 Subject: [PATCH] Fix no installs message not being removed after adding remote server --- frontend/src/App.svelte | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/App.svelte b/frontend/src/App.svelte index 94aab033..f413cdd1 100644 --- a/frontend/src/App.svelte +++ b/frontend/src/App.svelte @@ -73,6 +73,9 @@ } else { noInstallsError = true; } + } else { + invalidInstallsError = false; + noInstallsError = false; } const modalStore = getModalStore();