diff --git a/src/components/pages/QuestionnaireIntermediate/index.tsx b/src/components/pages/QuestionnaireIntermediate/index.tsx
index 1425252..17686ad 100644
--- a/src/components/pages/QuestionnaireIntermediate/index.tsx
+++ b/src/components/pages/QuestionnaireIntermediate/index.tsx
@@ -40,11 +40,6 @@ function QuestionnaireIntermediatePage() {
}}
>
-
{path && (
diff --git a/src/components/pages/TrialChoice/index.tsx b/src/components/pages/TrialChoice/index.tsx
index 7cf1ecb..6fa1197 100755
--- a/src/components/pages/TrialChoice/index.tsx
+++ b/src/components/pages/TrialChoice/index.tsx
@@ -39,7 +39,7 @@ function TrialChoicePage() {
plansKeys[plan.name] = plansKeys[plan.name]
? plansKeys[plan.name] + 1
: 1;
- if (plansKeys[plan.name] > 1 && !plan.trial?.is_free) {
+ if (plansKeys[plan.name] > 1 && !plan.trial?.is_free && !!plan.trial) {
const targetPlan = plansWithoutTest.find(
(item) => item.name === plan.name && item.id.includes("stripe")
);