From ee7d5e30490d9c653f21468b85f826ca34461537 Mon Sep 17 00:00:00 2001 From: Natsu Kagami Date: Sun, 16 Jul 2023 15:50:51 +0200 Subject: [PATCH] Don't login automatically, allow multiple accounts to be added --- src/pages/login.jsx | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/pages/login.jsx b/src/pages/login.jsx index ecaad390..5a593ea1 100644 --- a/src/pages/login.jsx +++ b/src/pages/login.jsx @@ -33,9 +33,6 @@ function Login() { const res = await fetch(instancesListURL); const data = await res.json(); setInstancesList(data); - - // Automatically just login to DTTHDon - submitInstance("gts.dtth.ch") } catch (e) { // Silently fail console.error(e);