From 755686a38397ae0dbd6634b61b8185c389f29d97 Mon Sep 17 00:00:00 2001 From: Kuba Sekowski Date: Sat, 4 Apr 2026 13:07:28 +0200 Subject: [PATCH] Add hardcoded trial license key --- src/helpers/licenseKeyValidator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/licenseKeyValidator.ts b/src/helpers/licenseKeyValidator.ts index 0f61ba8de6..72ae003241 100644 --- a/src/helpers/licenseKeyValidator.ts +++ b/src/helpers/licenseKeyValidator.ts @@ -54,7 +54,7 @@ export function checkLicenseKeyValidity(licenseKey: string): LicenseKeyValidityS vars: {}, } - if (licenseKey === 'gpl-v3' || licenseKey === 'internal-use-in-handsontable') { + if (licenseKey === 'gpl-v3' || licenseKey === 'internal-use-in-handsontable' || licenseKey === 'hftrial-0168e-1f2b7-47158-70b05-0842f') { messageDescriptor.template = LicenseKeyValidityState.VALID } else if (typeof licenseKey === 'string' && checkKeySchema(licenseKey)) {