From a70a60e6bd5bae9fa1cd22085c538794325b3540 Mon Sep 17 00:00:00 2001 From: Fedorov Vladimir Date: Sat, 29 Aug 2026 02:07:09 +0700 Subject: [PATCH] fix --- src/components/client.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/client.ts b/src/components/client.ts index d1cc196..84f5946 100644 --- a/src/components/client.ts +++ b/src/components/client.ts @@ -14,8 +14,8 @@ export const apiGetDays = async (): Promise => { } export function getApiUrl(path: string) { - // const url = 'https://' + window.location.host.split(':')[0] + path - const url = 'http://localhost:8210' + path + const url = 'https://' + window.location.host.split(':')[0] + path + // const url = 'http://localhost:8210' + path return url }