From 281a973c370cbb0044e94b46dbe9cdc9e6136e83 Mon Sep 17 00:00:00 2001 From: Ammar Ahmed Date: Sat, 11 Jul 2026 12:00:15 +0500 Subject: [PATCH] mobile: fix unable to change plan on buy-plan screen --- apps/mobile/app/components/paywall/index.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/mobile/app/components/paywall/index.tsx b/apps/mobile/app/components/paywall/index.tsx index cdc8d9bf8..65e513bce 100644 --- a/apps/mobile/app/components/paywall/index.tsx +++ b/apps/mobile/app/components/paywall/index.tsx @@ -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;