mobile: fix unable to change plan on buy-plan screen

This commit is contained in:
Ammar Ahmed
2026-07-11 12:00:15 +05:00
parent 2738207c20
commit 281a973c37

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;