Skip to content

Commit

Permalink
remove conditional fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
garthvh committed Jul 31, 2024
1 parent 447d820 commit ae5e0c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Meshtastic/Views/Settings/AppLog.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ struct AppLog: View {

var body: some View {
HStack {

if idiom == .phone {
Table(logs, selection: $selection, sortOrder: $sortOrder) {
TableColumn("log.message", value: \.composedMessage) { value in
Text(value.composedMessage)
.foregroundStyle(value.level.color)
.font(idiom == .phone ? .caption : .body)
.font(.caption)
}
.width(ideal: 200, max: .infinity)
}
Expand Down Expand Up @@ -92,7 +92,7 @@ struct AppLog: View {
TableColumn("log.message", value: \.composedMessage) { value in
Text(value.composedMessage)
.foregroundStyle(value.level.color)
.font(idiom == .phone ? .caption : .body)
.font(.body)
}
.width(ideal: 200, max: .infinity)
}
Expand Down

0 comments on commit ae5e0c9

Please sign in to comment.