Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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 @@ -6,6 +6,7 @@
- [*] Order details: Display only physical items in the Shipping Labels section. [https://github.com/woocommerce/woocommerce-ios/pull/16127]
- [internal] Address deprecated view modifiers usage following iOS17 API updates [https://github.com/woocommerce/woocommerce-ios/pull/16080]
- [internal] POS Modularization: Removed direct ServiceLocator usage within POS by requiring complex Woo app target dependencies to be injected via POS dependency protocols, and moved reusable dependencies to WooFoundation and Yosemite [https://github.com/woocommerce/woocommerce-ios/pull/16132]
- [internal] Replace deprecated code on performance chart [https://github.com/woocommerce/woocommerce-ios/pull/16145]

23.2
-----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -344,9 +344,6 @@ private extension BlazeCampaignDashboardViewModel {
self?.updateResults()
}

let productTransformer: (StorageProduct) -> BlazeCampaignProduct = {
BlazeCampaignProduct(storageProduct: $0)
}
productResultsController.onDidChangeContent = { [weak self] in
guard let self else { return }
latestPublishedProduct = productResultsController.fetchedObjects.first
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,10 @@ struct StoreStatsChart: View {
return
}

let xPosition = location.x - geometry[proxy.plotAreaFrame].origin.x
guard let plotFrame = proxy.plotFrame else {
return
}
let xPosition = location.x - geometry[plotFrame].origin.x
guard let date: Date = proxy.value(atX: xPosition) else {
return
}
Expand Down