consistent section titles for networks list

This commit is contained in:
ivan grachev 2023-11-22 20:19:11 +03:00
parent b24e106ad1
commit 6f4096d388
2 changed files with 2 additions and 1 deletions

View File

@ -97,5 +97,6 @@ struct Strings {
static let notNow = "not now" static let notNow = "not now"
static let done = "Done" static let done = "Done"
static let pinned = "Pinned" static let pinned = "Pinned"
static let mainnets = "Mainnets"
} }

View File

@ -40,7 +40,7 @@ struct NetworksListView: View {
private func list() -> some View { private func list() -> some View {
List { List {
networkSection(networks: pinned, title: Strings.pinned) networkSection(networks: pinned, title: Strings.pinned)
networkSection(networks: mainnets) networkSection(networks: mainnets, title: Strings.mainnets)
networkSection(networks: testnets, title: Strings.testnets) networkSection(networks: testnets, title: Strings.testnets)
} }
} }