diff --git a/bitchat/Views/ContentView.swift b/bitchat/Views/ContentView.swift index 1e1b7c05..e8c49020 100644 --- a/bitchat/Views/ContentView.swift +++ b/bitchat/Views/ContentView.swift @@ -188,10 +188,6 @@ struct ContentView: View { ) ) { peopleSheetView - #if os(iOS) - .presentationDetents([.large]) - .presentationDragIndicator(.visible) - #endif } .sheet(isPresented: $showAppInfo) { AppInfoView() @@ -223,8 +219,6 @@ struct ContentView: View { } } } - .presentationDetents([.large]) - .presentationDragIndicator(.hidden) .ignoresSafeArea() } #endif diff --git a/bitchat/Views/FingerprintView.swift b/bitchat/Views/FingerprintView.swift index f82ab04b..5b198cef 100644 --- a/bitchat/Views/FingerprintView.swift +++ b/bitchat/Views/FingerprintView.swift @@ -240,8 +240,6 @@ struct FingerprintView: View { .padding() .frame(maxWidth: .infinity, maxHeight: .infinity) .background(backgroundColor) - .presentationDetents([.large]) - .presentationDragIndicator(.visible) } private func formatFingerprint(_ fingerprint: String) -> String { diff --git a/bitchat/Views/LocationChannelsSheet.swift b/bitchat/Views/LocationChannelsSheet.swift index bf6b4bc9..998e60d7 100644 --- a/bitchat/Views/LocationChannelsSheet.swift +++ b/bitchat/Views/LocationChannelsSheet.swift @@ -125,9 +125,6 @@ struct LocationChannelsSheet: View { .navigationTitle("") #endif } - #if os(iOS) - .presentationDetents([.large]) - #endif #if os(macOS) .frame(minWidth: 420, minHeight: 520) #endif diff --git a/bitchat/Views/LocationNotesView.swift b/bitchat/Views/LocationNotesView.swift index a705719e..63d57c81 100644 --- a/bitchat/Views/LocationNotesView.swift +++ b/bitchat/Views/LocationNotesView.swift @@ -78,9 +78,6 @@ struct LocationNotesView: View { .navigationTitle("") #endif } - #if os(iOS) - .presentationDetents([.large]) - #endif .background(backgroundColor) .onDisappear { manager.cancel() } .onChange(of: geohash) { newValue in diff --git a/bitchat/Views/VerificationViews.swift b/bitchat/Views/VerificationViews.swift index 40ac301e..180e2b46 100644 --- a/bitchat/Views/VerificationViews.swift +++ b/bitchat/Views/VerificationViews.swift @@ -388,10 +388,6 @@ struct VerificationSheetView: View { .padding(.vertical, 14) } .background(backgroundColor) - #if os(iOS) - .presentationDetents([.large]) - .presentationDragIndicator(.visible) - #endif .onDisappear { showingScanner = false } } }