From f3eb8275dab8b6a4155a17b6cf23605be4e1927b Mon Sep 17 00:00:00 2001 From: Fedorov Vladimir Date: Thu, 26 Mar 2026 04:07:28 +0700 Subject: [PATCH] fix port --- src/components/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/client.ts b/src/components/client.ts index ebc240e..dabf8bd 100644 --- a/src/components/client.ts +++ b/src/components/client.ts @@ -14,7 +14,7 @@ export const apiGetDays = async (): Promise => { } export function getApiUrl(path: string) { - const url = 'http://' + window.location.host.split(':')[0] + ':8090' + path + const url = 'http://' + window.location.host.split(':')[0] + ':8210' + path return url }