Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update delete wallet copy #293

Merged
merged 2 commits into from
Mar 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pages/settings/wallets/EditWallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ export function EditWallet() {
<Pressable
onPress={() => {
RNAlert.alert(
"Delete Wallet",
"Are you sure you want to delete your wallet? This cannot be undone.",
"Remove Wallet Connection",
"Are you sure you want to remove this wallet connection? This cannot be undone.",
[
{
text: "Cancel",
Expand All @@ -200,9 +200,9 @@ export function EditWallet() {
<CardContent className="flex flex-row items-center gap-4">
<TrashIcon className="text-muted-foreground" />
<View className="flex flex-1 flex-col">
<CardTitle>Delete Wallet</CardTitle>
<CardTitle>Remove Wallet Connection</CardTitle>
<CardDescription>
Remove this wallet from your list of wallets
Remove this wallet connection from Alby Go
</CardDescription>
</View>
</CardContent>
Expand Down