fix: admin/logout: old message

Massimo Melina committed Mar 30, 2022 at 17:02 UTC bfd84b8cc4ebb23f311d87bd176102f6e831c3bc
1 file changed +1 -1
admin/src/LogoutPage.ts
+1 -1
@@ -9,7 +9,7 @@ export default function LogoutPage() {
9 const { username } = useSnapState()
10 if (!cfg) return null
11 if (!username)
12 - return h(Alert, { severity: 'info' }, "You are not logged in, because authentication is not currently required. You can enable it in the Configuration page.")
12 + return h(Alert, { severity: 'info' }, "You are not logged in, because authentication is not required on localhost")
13 return h(Box, { display: 'flex', flexDirection:'column', gap: 2 },
14 "You are logged in as " + username,
15 h(Box, {},