From b35f13c53c53c77faeff29e752acd147d59ed92a Mon Sep 17 00:00:00 2001 From: Joana Maia Date: Fri, 6 Oct 2023 09:13:19 +0100 Subject: [PATCH] Fix paywall copy --- frontend/src/modules/layout/pages/paywall-page.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/modules/layout/pages/paywall-page.vue b/frontend/src/modules/layout/pages/paywall-page.vue index 3936fe4b88..a9a90aa8af 100644 --- a/frontend/src/modules/layout/pages/paywall-page.vue +++ b/frontend/src/modules/layout/pages/paywall-page.vue @@ -112,8 +112,8 @@ const section = computed( const page = computed(() => pageContent[section.value]); const computedFeaturePlan = computed(() => { if (config.isCommunityVersion) return 'Custom plan'; - if (page.value.headerTitle === 'Eagle Eye') return 'Growth and Eagle Eye plans'; - return 'Growth plan'; + if (page.value.headerTitle === 'Eagle Eye') return 'Scale and Eagle Eye plans'; + return 'Scale plan'; });