From 91dddc51370a6490bd4a97b2175abc4c9c292404 Mon Sep 17 00:00:00 2001 From: Timo Knuth Date: Mon, 6 Jul 2026 13:34:20 +0200 Subject: [PATCH] fix(app): restore tappable Privacy/Terms links on paywall Co-Authored-By: Claude Fable 5 --- app/profile/billing.tsx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/app/profile/billing.tsx b/app/profile/billing.tsx index 4f6c3c5..547ccd1 100644 --- a/app/profile/billing.tsx +++ b/app/profile/billing.tsx @@ -766,7 +766,15 @@ export default function BillingScreen() { - Privacy | Terms + + Linking.openURL('https://greenlenspro.com/privacy')}> + Privacy + + | + Linking.openURL('https://greenlenspro.com/terms')}> + Terms + + {copy.cancelAnytime} @@ -1213,7 +1221,8 @@ const styles = StyleSheet.create({ dueAmount: { fontSize: 14, fontWeight: '800' }, paywallCta: { height: 58, borderRadius: 14, alignItems: 'center', justifyContent: 'center', marginBottom: 12 }, paywallCtaText: { fontSize: 18, fontWeight: '800' }, - paywallFooter: { flexDirection: 'row', justifyContent: 'space-between' }, + paywallFooter: { flexDirection: 'row', justifyContent: 'space-between', alignItems: 'center' }, + paywallFooterLinks: { flexDirection: 'row', alignItems: 'center' }, paywallFooterText: { fontSize: 12, fontWeight: '600' }, safeArea: { flex: 1 }, header: { flexDirection: 'row', alignItems: 'center', padding: 16 },