We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8119873 commit 20ad8a0Copy full SHA for 20ad8a0
1 file changed
DevLog/UI/PushNotification/PushNotificationListView.swift
@@ -122,12 +122,9 @@ struct PushNotificationListView: View {
122
viewModel.send(.toggleSortOption)
123
} label: {
124
let condition = viewModel.state.query.sortOrder == .oldest
125
- HStack {
126
- Text("정렬: \(viewModel.state.query.sortOrder.title)")
127
- Image(systemName: "chevron.down")
128
- }
129
- .foregroundStyle(condition ? .white : Color(.label))
130
- .adaptiveButtonStyle(color: condition ? .blue : .clear)
+ Text("정렬: \(viewModel.state.query.sortOrder.title)")
+ .foregroundStyle(condition ? .white : Color(.label))
+ .adaptiveButtonStyle(color: condition ? .blue : .clear)
131
}
132
133
Menu {
0 commit comments