From eafdb955ca21f7cfb2690eeaaaf4fee43880bdd2 Mon Sep 17 00:00:00 2001 From: walexjnr Date: Sat, 25 Jul 2026 18:17:48 +0100 Subject: [PATCH] fix: align empty restore-purchases message with expected copy The Restore Purchases button is already wired through useInAppPurchase to mobilePayments.restorePurchases() (it restores the tier and refreshes history). Align the empty-restore message with the expected 'No purchases found to restore.' copy. --- src/hooks/useInAppPurchase.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useInAppPurchase.ts b/src/hooks/useInAppPurchase.ts index 25737c28..2a886fb0 100644 --- a/src/hooks/useInAppPurchase.ts +++ b/src/hooks/useInAppPurchase.ts @@ -172,7 +172,7 @@ export const useInAppPurchase = (): UseInAppPurchase => { if (restored.length === 0) { return { count: 0, - message: 'No previous purchases found for this account.', + message: 'No purchases found to restore.', }; } return {