From c40fccc95f9e0fa737d2eb475366b11852c9f228 Mon Sep 17 00:00:00 2001 From: Xor290 Date: Sun, 1 Mar 2026 15:18:32 +0100 Subject: [PATCH] chore: update icon --- mobile/src/api/api.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/mobile/src/api/api.ts b/mobile/src/api/api.ts index e620fe3e..793a1393 100644 --- a/mobile/src/api/api.ts +++ b/mobile/src/api/api.ts @@ -13,20 +13,12 @@ import { extractUsernameFromToken } from "../auth/jwtUtils"; const V1 = "https://uber-stup.club/api/v1"; -// ============================================ -// AUTH HELPERS -// ============================================ - export const getJwtUsername = async (): Promise => { const token = await getToken(); if (!token) return null; return extractUsernameFromToken(token); }; -// ============================================ -// AUTH -// ============================================ - export interface AuthResponse { success: boolean; message?: string;