From 20294ee23333423f186e36f1c145360b8ca3d389 Mon Sep 17 00:00:00 2001 From: Vladyslav Matsiiako Date: Wed, 17 May 2023 09:27:12 -0700 Subject: [PATCH] Fixed the const issue --- frontend/src/const.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/const.ts b/frontend/src/const.ts index 0333c4cca..2b15653b7 100644 --- a/frontend/src/const.ts +++ b/frontend/src/const.ts @@ -43,6 +43,6 @@ const plansProd: Mapping = { enterprise: 'licence_key_required' }; -export const plans = plansDev || plansProd; +export const plans = plansProd || plansDev; export const leaveConfirmDefaultMessage = 'Your changes will be lost if you leave the page. Are you sure you want to continue?';