fix app log version discrepancy

This commit is contained in:
Garth Vander Houwen 2024-07-07 14:11:29 -07:00
parent ea677b4cee
commit 2a7752c0b8
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ struct MapSettingsForm: View {
@AppStorage("meshMapShowNodeHistory") private var nodeHistory = false
@AppStorage("meshMapShowRouteLines") private var routeLines = false
@AppStorage("enableMapConvexHull") private var convexHull = false
@AppStorage("enableMapWaypoints") private var waypoints = false
@AppStorage("enableMapWaypoints") private var waypoints = true
@Binding var traffic: Bool
@Binding var pointsOfInterest: Bool
@Binding var mapLayer: MapLayer

View file

@ -176,7 +176,7 @@ struct AppLog: View {
}
}
@available(iOS 17.4, *)
@available(iOS 17.4, macOS 14.4, *)
extension AppLog {
@MainActor
private func searchAppLogs() async -> [OSLogEntryLog] {