Skip to content

Commit

Permalink
fix: remove set lightning address on receive page (confusing for new …
Browse files Browse the repository at this point in the history
…users)
  • Loading branch information
rolznz committed Dec 7, 2024
1 parent 4343e49 commit 113bf7f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pages/receive/Receive.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Nip47Transaction } from "@getalby/sdk/dist/NWCClient";
import * as Clipboard from "expo-clipboard";
import { Link, router } from "expo-router";
import { router } from "expo-router";
import React from "react";
import { Image, Share, TouchableOpacity, View } from "react-native";
import Toast from "react-native-toast-message";
Expand Down Expand Up @@ -179,7 +179,8 @@ export function Receive() {
{!enterCustomAmount && !invoice && !lightningAddress && (
<>
<View className="flex-1 h-full flex flex-col items-center justify-center gap-5">
<ZapIcon className="text-foreground" size={64} />
{/* TODO: re-add when we have a way to create a lightning address for new users */}
{/* <ZapIcon className="text-foreground" size={64} />
<Text className="text-2xl max-w-64 text-center">
Receive quickly with a Lightning Address
</Text>
Expand All @@ -190,7 +191,7 @@ export function Receive() {
<Button variant="secondary">
<Text>Set Lightning Address</Text>
</Button>
</Link>
</Link> */}
</View>
<View className="flex flex-row gap-3 p-6">
<Button
Expand Down

0 comments on commit 113bf7f

Please sign in to comment.