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