diff --git a/damus/Components/CustomPicker.swift b/damus/Components/CustomPicker.swift index 7badc55f..8db03152 100644 --- a/damus/Components/CustomPicker.swift +++ b/damus/Components/CustomPicker.swift @@ -37,6 +37,8 @@ struct CustomPicker: View { text .padding(EdgeInsets(top: 15, leading: 0, bottom: 10, trailing: 0)) .font(.system(size: 14, weight: .heavy)) + .contentShape(Rectangle()) + .frame(maxWidth: .infinity) } .background( Group { @@ -48,7 +50,6 @@ struct CustomPicker: View { }, alignment: .bottom ) - .frame(maxWidth: .infinity) .accentColor(tag == selection ? textColor() : .gray) } }