diff --git a/src/routes/Send.tsx b/src/routes/Send.tsx index 77f319b..ae03baa 100644 --- a/src/routes/Send.tsx +++ b/src/routes/Send.tsx @@ -659,6 +659,13 @@ export function Send() { return !destination() || sending() || amountSats() === 0n || !!error(); }); + const shouldShowGiftLink = createMemo(() => { + // iOS users should only see gift link if they're mutiny+ subscribers + const isIOS = Capacitor.getPlatform() === "ios"; + + return !isIOS || state.mutiny_plus; + }); + return ( @@ -837,9 +844,11 @@ export function Send() { -
- -
+ +
+ +
+