From fac6334675c3217c7c9314fe3b251cf5af096dc0 Mon Sep 17 00:00:00 2001 From: Viktoria Kovtun Date: Tue, 28 Oct 2025 12:04:21 +0300 Subject: [PATCH] fix: replacement with a new domain --- src/core/network/api/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/network/api/client.ts b/src/core/network/api/client.ts index a16c0e8..4cd5cb1 100644 --- a/src/core/network/api/client.ts +++ b/src/core/network/api/client.ts @@ -3,7 +3,7 @@ import createDebug from 'debug'; const debug = createDebug('one-me:client'); const defaultOptions = { - baseUrl: 'https://botapi.max.ru', + baseUrl: 'https://platform-api.max.ru', } as const; export type ClientOptions = Partial;