Skip to content

Commit

Permalink
fix paginated orders again
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim2121512 committed Dec 18, 2024
1 parent f8e9a56 commit b9593cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/core/services/order_service/order_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ async def get_paginated_orders_for_worker(
client_summary = await self.client_repo.get_private_summary_by_id(objectId_to_str(order.client))

orders.append(OrderForWorker(
id=order.id,
id=str(order.id),
price=order.price,
tools=tool_summaries,
start_leasing=order.start_leasing,
Expand Down

0 comments on commit b9593cb

Please sign in to comment.