Compare commits
1 Commits
profile-na
...
translatio
| Author | SHA1 | Date | |
|---|---|---|---|
|
5bed6a95e2
|
@@ -78,7 +78,7 @@ enum Route: Hashable {
|
|||||||
case .ZapSettings(let settings):
|
case .ZapSettings(let settings):
|
||||||
ZapSettingsView(settings: settings)
|
ZapSettingsView(settings: settings)
|
||||||
case .TranslationSettings(let settings):
|
case .TranslationSettings(let settings):
|
||||||
NotificationSettingsView(settings: settings)
|
TranslationSettingsView(settings: settings)
|
||||||
case .SearchSettings(let settings):
|
case .SearchSettings(let settings):
|
||||||
SearchSettingsView(settings: settings)
|
SearchSettingsView(settings: settings)
|
||||||
case .Thread(let thread):
|
case .Thread(let thread):
|
||||||
|
|||||||
@@ -42,9 +42,6 @@ struct MutelistView: View {
|
|||||||
.swipeActions {
|
.swipeActions {
|
||||||
RemoveAction(pubkey: pubkey)
|
RemoveAction(pubkey: pubkey)
|
||||||
}
|
}
|
||||||
.onTapGesture {
|
|
||||||
damus_state.nav.push(route: Route.ProfileByKey(pubkey: pubkey))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
.navigationTitle(NSLocalizedString("Muted Users", comment: "Navigation title of view to see list of muted users."))
|
.navigationTitle(NSLocalizedString("Muted Users", comment: "Navigation title of view to see list of muted users."))
|
||||||
.onAppear {
|
.onAppear {
|
||||||
|
|||||||
@@ -72,10 +72,9 @@ struct RelayDetailView: View {
|
|||||||
|
|
||||||
if let pubkey = nip11.pubkey {
|
if let pubkey = nip11.pubkey {
|
||||||
Section(NSLocalizedString("Admin", comment: "Label to display relay contact user.")) {
|
Section(NSLocalizedString("Admin", comment: "Label to display relay contact user.")) {
|
||||||
UserViewRow(damus_state: state, pubkey: pubkey)
|
NavigationLink(value: Route.ProfileByKey(pubkey: pubkey), label: {
|
||||||
.onTapGesture {
|
UserViewRow(damus_state: state, pubkey: pubkey)
|
||||||
state.nav.push(route: Route.ProfileByKey(pubkey: pubkey))
|
})
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if let relay_connection {
|
if let relay_connection {
|
||||||
|
|||||||
Reference in New Issue
Block a user