Skip to content

Commit

Permalink
fix: isPaid flag when moving teams to 0-team org (#10263)
Browse files Browse the repository at this point in the history
Signed-off-by: Matt Krick <[email protected]>
  • Loading branch information
mattkrick authored Sep 24, 2024
1 parent 5893e38 commit b625d7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/graphql/mutations/moveTeamToOrg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const moveToOrg = async (
// RESOLUTION
const updates = {
orgId,
isPaid: !!isPaidResult?.isPaid,
isPaid: isPaidResult?.isPaid ?? true,
tier: org.tier,
trialStartDate: org.trialStartDate,
updatedAt: new Date()
Expand Down

0 comments on commit b625d7e

Please sign in to comment.