Fix unable to exit edit mode after deleting the last profile on iOS

This commit is contained in:
Xiang
2024-12-15 21:36:07 +08:00
committed by 世界
parent ef08a1052b
commit 4b056b5c4e
@@ -130,7 +130,7 @@ public struct ProfileView: View {
#if os(iOS)
.toolbar {
ToolbarItem(placement: .navigationBarTrailing) {
EditButton().disabled(profileList.isEmpty)
EditButton().disabled(profileList.isEmpty && !editMode.isEditing)
}
}
#elseif os(tvOS)