chore: fix url

This commit is contained in:
2026-05-03 13:44:25 +02:00
parent 78cdf074e2
commit b323cf298c
6 changed files with 18 additions and 15 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ import type {
import { getToken } from "../auth/tokenStorage";
import { extractUsernameFromToken } from "../auth/jwtUtils";
const V1 = "https://mln-uber.club/api/v1";
const V1 = "https://5.181.0.112.nip.io/api/v1";
export const getJwtUsername = async (): Promise<string | null> => {
const token = await getToken();
+1 -1
View File
@@ -2,7 +2,7 @@ import axios from "axios";
import { getToken, getAdminToken } from "../auth/tokenStorage";
// Change this to your server IP/domain
export const API_BASE_URL = "https://mln-uber.club";
export const API_BASE_URL = "https://5.181.0.112.nip.io";
const apiClient = axios.create({
baseURL: API_BASE_URL,