From d32c5fb869b06ebfa48237fa5202462b3e6f3d31 Mon Sep 17 00:00:00 2001 From: Vladyslav Matsiiako Date: Mon, 15 May 2023 07:31:17 -0700 Subject: [PATCH] update the dev stripe product id --- frontend/src/const.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/const.ts b/frontend/src/const.ts index 291435f36..0333c4cca 100644 --- a/frontend/src/const.ts +++ b/frontend/src/const.ts @@ -30,7 +30,7 @@ interface Mapping { } const plansDev: Mapping = { - starter: 'prod_Mb4ATFT5QAHoPM', + starter: 'prod_Nt6kPvYsVBuzVH', team: 'prod_NEpD2WMXUS2eDn', professional: 'prod_Mb4CetZ2jE7jdl', enterprise: 'licence_key_required' @@ -43,6 +43,6 @@ const plansProd: Mapping = { enterprise: 'licence_key_required' }; -export const plans = plansProd || plansDev; +export const plans = plansDev || plansProd; export const leaveConfirmDefaultMessage = 'Your changes will be lost if you leave the page. Are you sure you want to continue?';