feat(frontend): add guild join flow, members panel, and channel-create member modal

This commit is contained in:
nav
2026-05-14 16:58:12 +00:00
parent 75fee7c725
commit 40540ab8a6
5 changed files with 159 additions and 35 deletions

View File

@@ -7,6 +7,7 @@ export type AuthContextValue = {
login: (centerApiBase: string, email: string, password: string) => Promise<void>
logout: () => Promise<void>
ensureFreshToken: () => Promise<string | null>
refreshGuilds: () => Promise<void>
}
export const AuthContext = createContext<AuthContextValue | null>(null)