From 7253f90cdeb52b49167c658c4b777caed3309273 Mon Sep 17 00:00:00 2001 From: Luis Mauro Date: Wed, 13 Sep 2023 11:59:57 -0600 Subject: [PATCH] remove unused type imports --- apps/meteor/ee/app/license/server/fromV2toV3.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/meteor/ee/app/license/server/fromV2toV3.ts b/apps/meteor/ee/app/license/server/fromV2toV3.ts index 458deea589f9..4ed07985a3fd 100644 --- a/apps/meteor/ee/app/license/server/fromV2toV3.ts +++ b/apps/meteor/ee/app/license/server/fromV2toV3.ts @@ -3,7 +3,7 @@ * Transform a License V2 into a V3 representation. */ -import type { ILicenseV2, ILicenseV3, Module, LicenseLimit, LicensePeriod } from '@rocket.chat/core-typings'; +import type { ILicenseV2, ILicenseV3, Module } from '@rocket.chat/core-typings'; import { isBundle, getBundleFromModule, getBundleModules } from './bundles'; import { getTagColor } from './getTagColor'; @@ -42,7 +42,7 @@ export const fromV2toV3 = (v2: ILicenseV2): ILicenseV3 => { { validUntil: new Date(Date.parse(v2.expiry)).toISOString(), invalidBehavior: 'invalidate_license', - } as LicensePeriod, + }, ], statisticsReport: { required: false,