@@ -72,7 +72,7 @@ export class MembershipController {
}
const plans = await this.membershipService.getPlans()
- const plan = plans.find((p) => p.id === planId)
+ const plan = plans.find((p) => p.id == planId)
if (!plan) {
return {
success: false,