Improve texts
This commit is contained in:
parent
f8fc37d7e0
commit
f284696e21
@ -22,6 +22,6 @@ enum ConnectionStrategy: Int, CaseIterable, Identifiable {
|
|||||||
extension ConnectionStrategy: CustomStringConvertible {
|
extension ConnectionStrategy: CustomStringConvertible {
|
||||||
|
|
||||||
var description: String {
|
var description: String {
|
||||||
transmissionTypes.map { $0.displayName }.joined(separator: "+")
|
transmissionTypes.map { $0.displayName }.joined(separator: " + ")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,9 @@ struct ContentView: View {
|
|||||||
.font(.title)
|
.font(.title)
|
||||||
Spacer()
|
Spacer()
|
||||||
}
|
}
|
||||||
|
if coordinator.state != .notChecked {
|
||||||
Text(coordinator.state.description)
|
Text(coordinator.state.description)
|
||||||
|
}
|
||||||
Spacer()
|
Spacer()
|
||||||
HStack(alignment: .bottom, spacing: 0) {
|
HStack(alignment: .bottom, spacing: 0) {
|
||||||
Button(action: { showHistorySheet = true }) {
|
Button(action: { showHistorySheet = true }) {
|
||||||
|
Loading…
Reference in New Issue
Block a user