Skip to content

Commit 9538e40

Browse files
committed
Fix line length
1 parent 0a096fe commit 9538e40

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Modules/Sources/Yosemite/Tools/POS/POSCatalogIncrementalSyncService.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,10 @@ private extension POSCatalogIncrementalSyncService {
9393
// Fetch trashed products separately to detect products moved to trash
9494
async let trashedProductsTask = batchedLoader.loadAll(
9595
makeRequest: { pageNumber in
96-
try await syncRemote.loadProducts(modifiedAfter: modifiedAfter, siteID: siteID, pageNumber: pageNumber, includeStatus: ProductStatus.trash.rawValue)
96+
try await syncRemote.loadProducts(modifiedAfter: modifiedAfter,
97+
siteID: siteID,
98+
pageNumber: pageNumber,
99+
includeStatus: ProductStatus.trash.rawValue)
97100
}
98101
)
99102

0 commit comments

Comments
 (0)