Skip to content

Commit

Permalink
fix: minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bietkul committed Nov 6, 2019
1 parent 89aeda9 commit a70d3df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/plans.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func ValidatePlans(validPlans []Plan, byPassValidation bool) bool {
return false
}
for _, validPlan := range validPlans {
if (ClusterBilling == "true" || Billing == "true" || HostedBilling == "true") && Tier.String() == validPlan.String() {
if Tier.String() == validPlan.String() {
return true
}
}
Expand Down

0 comments on commit a70d3df

Please sign in to comment.