Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- [*] Improve card payments onboarding error handling to show network errors correctly [https://github.com/woocommerce/woocommerce-ios/pull/16304]
- [*] Authenticate the admin page automatically for sites with SSO enabled in custom fields, in-person payment setup, and editing tax rates flows. [https://github.com/woocommerce/woocommerce-ios/pull/16318]
- [*] Show POS feedback surveys for eligible merchants [https://github.com/woocommerce/woocommerce-ios/pull/16325]
- [*] Fix product variation selection for order creation [https://github.com/woocommerce/woocommerce-ios/pull/16317]

23.6
-----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ struct OrderFormPresentationWrapper: View {
},
secondaryView: { isShowingProductSelector in
if let productSelectorViewModel = viewModel.productSelectorViewModel {
ProductSelectorView(configuration: .loadConfiguration(for: horizontalSizeClass),
ProductSelectorNavigationView(configuration: .loadConfiguration(for: horizontalSizeClass),
isPresented: isShowingProductSelector,
viewModel: productSelectorViewModel)
.sheet(item: $viewModel.productToConfigureViewModel) { viewModel in
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@ struct ProductSelectorNavigationView: View {
}

var body: some View {
NavigationView {
NavigationStack {
ProductSelectorView(configuration: configuration,
isPresented: $isPresented,
viewModel: viewModel)
}
.navigationViewStyle(.stack)
.wooNavigationBarStyle()
}
}
Expand Down