Skip to content

Commit 1482a0b

Browse files
committed
fix: NavigationStack 외부로 빼냄으로서 해결
1 parent 9056ee5 commit 1482a0b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

DevLog/UI/Setting/PushNotificationSettingsView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,6 @@ struct PushNotificationSettingsView: View {
8585
)
8686
.datePickerStyle(.wheel)
8787
.labelsHidden()
88-
.presentationDragIndicator(.hidden)
89-
.presentationDetents([.height(viewModel.state.sheetHeight)])
9088
.onAppear { UIDatePicker.appearance().minuteInterval = 5 }
9189
.onDisappear { UIDatePicker.appearance().minuteInterval = 1 /* 기본값으로 복원 */ }
9290
.toolbar {
@@ -105,6 +103,8 @@ struct PushNotificationSettingsView: View {
105103
}
106104
)
107105
}
106+
.presentationDragIndicator(.hidden)
107+
.presentationDetents([.height(viewModel.state.sheetHeight)])
108108
}
109109
}
110110

0 commit comments

Comments
 (0)