chore: update icon

This commit is contained in:
2026-03-01 15:18:32 +01:00
parent 56c5f77497
commit c40fccc95f
-8
View File
@@ -13,20 +13,12 @@ import { extractUsernameFromToken } from "../auth/jwtUtils";
const V1 = "https://uber-stup.club/api/v1";
// ============================================
// AUTH HELPERS
// ============================================
export const getJwtUsername = async (): Promise<string | null> => {
const token = await getToken();
if (!token) return null;
return extractUsernameFromToken(token);
};
// ============================================
// AUTH
// ============================================
export interface AuthResponse {
success: boolean;
message?: string;