Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

No bug: Fix Wallet SF Symbols references #5535

Merged
merged 2 commits into from
Jun 16, 2022
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion BraveWallet/AddressView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ struct AddressView<Content: View>: View {
Button(action: {
UIPasteboard.general.string = address
}) {
Label(Strings.Wallet.copyAddressButtonTitle, image: "brave.clipboard")
Label(Strings.Wallet.copyAddressButtonTitle, braveSystemImage: "brave.clipboard")
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ struct SuggestedNetworkView: View {
Button(action: {
UIPasteboard.general.string = keyringStore.selectedAccount.address
}) {
Label(Strings.Wallet.copyAddressButtonTitle, image: "brave.clipboard")
Label(Strings.Wallet.copyAddressButtonTitle, braveSystemImage: "brave.clipboard")
.font(.body)
}
} label: {
HStack(spacing: 8) {
Expand Down