Skip to content

Commit

Permalink
Change cloud page CTA wording
Browse files Browse the repository at this point in the history
  • Loading branch information
255kb committed Jul 23, 2024
1 parent f76dcca commit c16f529
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/plans.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,10 @@ const PlansView: FunctionComponent<{
redirect(plan);
}}
>
{/* if not logged in or on a free plan -> buy now */}
{/* if not logged in or on a free plan -> buy btn */}
{((!currentUser.isLoading && !currentUser.data) ||
currentUser.data?.plan === Plans.FREE) &&
'Buy now'}
'Try for free'}
{/* if logged in and on a paid plan -> current plan*/}
{!currentUser.isLoading &&
currentUser.data &&
Expand Down

0 comments on commit c16f529

Please sign in to comment.