From 46bfdde9fcacbcbb57e13affd829dc38ded1b173 Mon Sep 17 00:00:00 2001 From: Tatiana Lopaeva Date: Wed, 7 Aug 2024 16:47:17 +0300 Subject: [PATCH] Shared: Fixed type. --- packages/shared/api/portal/types.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/shared/api/portal/types.ts b/packages/shared/api/portal/types.ts index 1dd34fcb05..c71e738a6d 100644 --- a/packages/shared/api/portal/types.ts +++ b/packages/shared/api/portal/types.ts @@ -24,6 +24,7 @@ // content are licensed under the terms of the Creative Commons Attribution-ShareAlike 4.0 // International. See the License terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode +import { TError } from "../../utils/axiosClient"; import { TariffState } from "../../enums"; export type TQuotas = { id: number; quantity: number }; @@ -129,5 +130,5 @@ export type TTenantExtra = { export type TRestoreProgress = { progress: number; - error?: any; + error?: TError; };