chore: build

This commit is contained in:
2026-05-09 16:38:22 +02:00
parent 771f514af3
commit d13a980447
7 changed files with 18 additions and 18 deletions
+4 -4
View File
@@ -1,4 +1,4 @@
import apiClient from "./client";
import apiClient, { API_BASE_URL } from "./client";
import type {
AuthResponse,
ClientResponse,
@@ -9,9 +9,9 @@ import type {
Alert,
} from "./types";
const V2 = "https://mln-uber.club/api/v2";
const CABINE_URL = "https://mln-uber.club/api/v1/cabine";
const V1_PUBLIC = "https://mln-uber.club/api/v1";
const V2 = `${API_BASE_URL}/api/v2`;
const CABINE_URL = `${API_BASE_URL}/api/v1/cabine`;
const V1_PUBLIC = `${API_BASE_URL}/api/v1`;
export const loginAdmin = async (
username: string,