Skip to content

Commit

Permalink
fix: use correct value for numPerInterval for leo annual (#2657)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelbrm committed Sep 17, 2024
1 parent 35f7182 commit 59cad15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/skus/model/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ func (x *OrderItem) IsLeo() bool {
return false
}

return x.SKU == "brave-leo-premium"
return x.SKU == "brave-leo-premium" || x.SKU == "brave-leo-premium-year"
}

func (x *OrderItem) StripeItemID() (string, bool) {
Expand Down

0 comments on commit 59cad15

Please sign in to comment.