diff --git a/services/web/app/src/Features/Project/ProjectController.js b/services/web/app/src/Features/Project/ProjectController.js
index 9910bf1c50..e068ac32f7 100644
--- a/services/web/app/src/Features/Project/ProjectController.js
+++ b/services/web/app/src/Features/Project/ProjectController.js
@@ -729,6 +729,7 @@ const _ProjectController = {
referal_id: user.referal_id,
signUpDate: user.signUpDate,
allowedFreeTrial,
+ hasRecurlySubscription: subscription?.recurlySubscription_id != null,
featureSwitches: user.featureSwitches,
features: user.features,
featureUsage,
diff --git a/services/web/frontend/js/features/subscription/components/dashboard/free-plan.tsx b/services/web/frontend/js/features/subscription/components/dashboard/free-plan.tsx
index bb670e19a5..ce4c2baaa5 100644
--- a/services/web/frontend/js/features/subscription/components/dashboard/free-plan.tsx
+++ b/services/web/frontend/js/features/subscription/components/dashboard/free-plan.tsx
@@ -1,6 +1,4 @@
import { useTranslation, Trans } from 'react-i18next'
-import { isSplitTestEnabled } from '@/utils/splitTestUtils'
-import { AI_STANDALONE_PLAN_CODE } from '../../data/add-on-codes'
function FreePlan() {
const { t } = useTranslation()
@@ -28,14 +26,6 @@ function FreePlan() {
{t('upgrade_now')}
- {isSplitTestEnabled('ai-add-on') && (
-
- {t('buy_overleaf_assist')}
-
- )}
>
)
}
diff --git a/services/web/frontend/js/features/subscription/components/dashboard/states/active/active.tsx b/services/web/frontend/js/features/subscription/components/dashboard/states/active/active.tsx
index 98b9ea5dc1..b24a71113e 100644
--- a/services/web/frontend/js/features/subscription/components/dashboard/states/active/active.tsx
+++ b/services/web/frontend/js/features/subscription/components/dashboard/states/active/active.tsx
@@ -15,8 +15,6 @@ import { ConfirmChangePlanModal } from './change-plan/modals/confirm-change-plan
import { KeepCurrentPlanModal } from './change-plan/modals/keep-current-plan-modal'
import { ChangeToGroupModal } from './change-plan/modals/change-to-group-modal'
import OLButton from '@/features/ui/components/ol/ol-button'
-import { BuyAiAddOnButton } from './change-plan/buy-ai-add-on-button'
-import { isSplitTestEnabled } from '@/utils/splitTestUtils'
export function ActiveSubscription({
subscription,
@@ -29,8 +27,6 @@ export function ActiveSubscription({
if (showCancellation) return
@@ -149,8 +145,6 @@ export function ActiveSubscription({