Skip to content

Commit cfcc06f

Browse files
authored
Fix product ordering bug (#408)
1 parent a555fdf commit cfcc06f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

backend/app/Services/Application/Handlers/Product/EditProductHandler.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,6 @@ private function updateProduct(UpsertProductDTO $productsData, array $where): Pr
9494
attributes: [
9595
'title' => $productsData->title,
9696
'type' => $productsData->type->name,
97-
'order' => $this->productOrderingService->getOrderForNewProduct(
98-
eventId: $productsData->event_id,
99-
productCategoryId: $productCategory->getId(),
100-
),
10197
'sale_start_date' => $productsData->sale_start_date
10298
? DateHelper::convertToUTC($productsData->sale_start_date, $event->getTimezone())
10399
: null,

0 commit comments

Comments
 (0)