Merge pull request #10085 from streetwriters/fix/651

mobile: fix unable to change plan on buy-plan screen
This commit is contained in:
Ammar Ahmed
2026-07-14 08:43:53 +05:00
committed by GitHub

View File

@@ -112,7 +112,8 @@ const PayWall = (props: NavigationProps<"PayWall">) => {
}
setStep(Steps.buy);
}
}, [pricingPlans, routeParams.state]);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [routeParams.state]);
useEffect(() => {
let listener: NativeEventSubscription;