aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/api/Api.tsx
diff options
context:
space:
mode:
authorWolfboy248 <georgejvindkarlsen@gmail.com>2024-11-01 17:56:35 +0100
committerWolfboy248 <georgejvindkarlsen@gmail.com>2024-11-01 17:56:35 +0100
commita6a5735e4869ac9835a0b2a1f7740448ecd63449 (patch)
tree7f58458483f74d938adf9cae7d2b98e169401261 /frontend/src/api/Api.tsx
parentfrontend: convert all native confirm and alerts to custom hooks (diff)
downloadlphub-a6a5735e4869ac9835a0b2a1f7740448ecd63449.tar.gz
lphub-a6a5735e4869ac9835a0b2a1f7740448ecd63449.tar.bz2
lphub-a6a5735e4869ac9835a0b2a1f7740448ecd63449.zip
frontend: uploadrundialog.tsx
Diffstat (limited to 'frontend/src/api/Api.tsx')
-rw-r--r--frontend/src/api/Api.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/api/Api.tsx b/frontend/src/api/Api.tsx
index 053e920..ddc7ac6 100644
--- a/frontend/src/api/Api.tsx
+++ b/frontend/src/api/Api.tsx
@@ -49,7 +49,7 @@ export const API = {
49 delete_map_summary: (token: string, map_id: string, route_id: number) => delete_map_summary(token, map_id, route_id), 49 delete_map_summary: (token: string, map_id: string, route_id: number) => delete_map_summary(token, map_id, route_id),
50}; 50};
51 51
52const BASE_API_URL: string = "/api/v1/" 52const BASE_API_URL: string = "https://lp.portal2.sr/api/v1/"
53 53
54export function url(path: string): string { 54export function url(path: string): string {
55 return BASE_API_URL + path; 55 return BASE_API_URL + path;