Fix bottom menu on node detail page that periodically turns transparent

This commit is contained in:
Garth Vander Houwen 2022-01-10 07:29:48 -08:00
parent 42ff83e69c
commit aa1c801ecd
2 changed files with 2 additions and 0 deletions

View file

@ -922,6 +922,7 @@ class BLEManager: NSObject, ObservableObject, CBCentralManagerDelegate, CBPeriph
print("🚫 Message Users Not Found, Fail")
success = false
} else if fetchedUsers.count >= 1 {
let newMessage = MessageEntity(context: context!)

View file

@ -267,6 +267,7 @@ struct NodeDetail: View {
}
}
.edgesIgnoringSafeArea([.leading, .trailing])
.padding(1)
}
}
.navigationTitle(node != nil ? String(node.user!.longName ?? "Unknown") : "Unknown")