little clean up

This commit is contained in:
m5r 2021-10-20 23:57:55 +02:00
parent 7a4c583ea5
commit 6dbdeac4d3
3 changed files with 2 additions and 3 deletions

View File

@ -31,7 +31,7 @@ export default function CTAForm() {
return;
}
Panelbear.track("join-waitlist");
Panelbear.track("Join waitlist");
return joinWaitlistMutation({ email });
});

View File

@ -91,7 +91,7 @@ const Pricing: BlitzPage = () => {
<Link href={Routes.LandingPage({ join_waitlist: "" })}>
<a
onClick={() => Panelbear.track("redirect-to-join-waitlist")}
onClick={() => Panelbear.track("Redirect to join waitlist")}
className="bg-rebeccapurple-500 text-white hover:bg-rebeccapurple-600 mt-8 block w-full py-3 px-6 border border-transparent rounded-md text-center font-medium"
>
{tier.cta}

View File

@ -23,7 +23,6 @@ const Billing: BlitzPage<Props> = (props) => {
TODO: I want to be able to
- upgrade to yearly
- downgrade to monthly
- resubscribe (message like "your subscription expired, would you like to renew ?")
*/
const { count: paymentsCount } = usePaymentsHistory();