diff --git a/packages/shared/api/portal/types.ts b/packages/shared/api/portal/types.ts index 2c9369dd44..172c813186 100644 --- a/packages/shared/api/portal/types.ts +++ b/packages/shared/api/portal/types.ts @@ -110,15 +110,6 @@ export type TTariff = { quotas: TQuotas[]; }; -export type TTenantExtraRes = { - customMode: boolean; - opensource: boolean; - enterprise: boolean; - notPaid: boolean; - licenseAccept: Date; - enableTariffPage: boolean; -}; - export type TRestoreProgress = { progress: number; error?: TError; diff --git a/packages/shared/store/AuthStore.ts b/packages/shared/store/AuthStore.ts index 1e71bdd258..6af6486bac 100644 --- a/packages/shared/store/AuthStore.ts +++ b/packages/shared/store/AuthStore.ts @@ -41,7 +41,6 @@ import { isPublicPreview, } from "../utils/common"; import { getCookie, setCookie } from "../utils/cookie"; -import { TTenantExtraRes } from "../api/portal/types"; import { TenantStatus } from "../enums"; import { COOKIE_EXPIRATION_YEAR, LANGUAGE } from "../constants"; import { Nullable, TI18n } from "../types"; @@ -75,8 +74,6 @@ class AuthStore { isUpdatingTariff = false; - tenantExtra: Nullable = null; - skipRequest = false; skipModules = false;