Skip to content

Commit

Permalink
Fix frontend code styling
Browse files Browse the repository at this point in the history
  • Loading branch information
haoyangw committed Nov 11, 2024
1 parent 05949b1 commit b78a55b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/app/(authenticated)/user/billing/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ const Page = () => {
onClickBuy: () => {
stripeCheckoutMutation.mutate({
price_id: process.env.NEXT_PUBLIC_STRIPE_PREMIUM_TIER_PRICE_ID || "",
tier_id: Number(process.env.NEXT_PUBLIC_PREMIUM_TIER_ID) || JippyTierID.Free,
tier_id:
Number(process.env.NEXT_PUBLIC_PREMIUM_TIER_ID) || JippyTierID.Free,
});
},
price: TierPrice.Premium,
Expand Down

0 comments on commit b78a55b

Please sign in to comment.