diff options
| -rw-r--r-- | ios/MullvadVPN/View controllers/Settings/SwiftUI components/SingleChoiceList.swift | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ios/MullvadVPN/View controllers/Settings/SwiftUI components/SingleChoiceList.swift b/ios/MullvadVPN/View controllers/Settings/SwiftUI components/SingleChoiceList.swift index 16377f807a..df39f51bee 100644 --- a/ios/MullvadVPN/View controllers/Settings/SwiftUI components/SingleChoiceList.swift +++ b/ios/MullvadVPN/View controllers/Settings/SwiftUI components/SingleChoiceList.swift @@ -347,6 +347,7 @@ struct SingleChoiceList<Value>: View where Value: Equatable { switch opt.value { case let .literal(v): literalRow(v) + .listRowSeparator(.hidden) case let .custom( label, prompt, @@ -364,8 +365,10 @@ struct SingleChoiceList<Value>: View where Value: Equatable { toValue: toValue, fromValue: fromValue ) + .listRowSeparator(.hidden) if let legend { subtitleRow(legend) + .listRowSeparator(.hidden) } } } |
