Skip to content

Commit

Permalink
fix order id
Browse files Browse the repository at this point in the history
  • Loading branch information
cuteolaf committed Aug 15, 2024
1 parent 3f0e218 commit 41522a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Tables/OrderProcessorTable/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const OrderProcessorTable = ({ data }: OrderProcessorTableProps) => {
<StyledTableRow key={index}>
<StyledTableCell align='center'>
<Button onClick={() => setActiveOrderId(orderId)}>
{orderId + 1}
{orderId}
</Button>
</StyledTableCell>
<StyledTableCell align='center'>
Expand Down

0 comments on commit 41522a2

Please sign in to comment.