Skip to content

Commit

Permalink
generic lookupkeys for subscriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
TeisNP committed Feb 5, 2024
1 parent fbc4f72 commit 7abdd52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/dashboard/src/pages/Dashboard/Team/tabs/Subscription.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const TeamPlanTabView: FunctionComponent = () => {
]}
selected={team?.paymentPlan === "FREE"}
teamId={team?.id!}
priceLookupKey={""}
priceLookupKey={"FREE"}
/>
</Grid>
<Grid item>
Expand All @@ -60,7 +60,7 @@ const TeamPlanTabView: FunctionComponent = () => {
]}
selected={team?.paymentPlan === "TEAM"}
teamId={team?.id!}
priceLookupKey={"price_1NjhTUAAd26uMXu2JFv0zKjd"}
priceLookupKey={"TEAM"}
/>
</Grid>
<Grid item>
Expand All @@ -78,7 +78,7 @@ const TeamPlanTabView: FunctionComponent = () => {
]}
selected={team?.paymentPlan === "ENTERPRISE"}
teamId={team?.id!}
priceLookupKey={"price_1NjhXOAAd26uMXu2InlkMmDS"}
priceLookupKey={"ENTERPRISE"}
/>
</Grid>
</Grid>
Expand Down

0 comments on commit 7abdd52

Please sign in to comment.