feat(auth): Added authentication

This commit is contained in:
Fishandchips321 2026-03-05 12:34:55 +00:00
parent d85d4334f8
commit 5e100c75ed
39 changed files with 704 additions and 86 deletions

View file

@ -11,6 +11,9 @@ const ServerList = () => {
setServers(serverList);
}).catch(err => {
setServers([]);
if (err.response && err.response.status === 401) {
return;
}
alert(err);
})
}, []);