apps/web: rename URL_IUS

This commit is contained in:
vchikalkin 2023-11-22 11:30:08 +03:00
parent c83c0e5c51
commit f497320558
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ import type { WretchError } from 'wretch';
import wretch from 'wretch';
const urls = getUrls();
const api = wretch(urls.URL_UIS).errorType('json');
const api = wretch(urls.URL_IUS).errorType('json');
type Input = { pageUrlParams: PageUrlParams; payload?: unknown };

View File

@ -4,6 +4,6 @@ const { URL_IUS_DIRECT } = getEnv();
export function getUrls() {
return {
URL_UIS: URL_IUS_DIRECT,
URL_IUS: URL_IUS_DIRECT,
};
}