3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-10 12:25:02 +00:00

Fix API_URL/API_DOMAIN usage in dashboard

This commit is contained in:
Dragory 2022-06-26 15:24:24 +03:00
parent 122f535e34
commit bc250209d8
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1
4 changed files with 7 additions and 7 deletions

View file

@ -1,5 +1,5 @@
import { RootStore } from "./store";
const apiUrl = process.env.API_URL;
const apiUrl = `https://${process.env.API_DOMAIN}`;
type QueryParamObject = { [key: string]: string | null };