fixing auth login flow and making custom login flow

This commit is contained in:
2026-04-03 19:54:18 -04:00
parent 874fec835d
commit bd0f5d52c2
3 changed files with 9 additions and 11 deletions

View File

@@ -1186,12 +1186,12 @@ function App() {
{email ? (
<>
<span className="mx-version" style={{ color: "var(--mx-fg2)" }}>{email}</span>
<a className="mx-auth-link" href="/auth/sign-out">Sign out</a>
<a className="mx-auth-link" href="/sign-out">Sign out</a>
</>
) : (
<>
<a className="mx-auth-link" href="/register">Create account</a>
<a className="mx-auth-link" href="/auth/sign-in">Sign in</a>
<a className="mx-auth-link" href="/sign-in">Sign in</a>
</>
)}
<span className="mx-version">v0.1.0</span>