Skip to content

Commit

Permalink
Update account.orders._index.tsx (#1976)
Browse files Browse the repository at this point in the history
  • Loading branch information
jamalsoueidan committed Apr 11, 2024
1 parent dcabe91 commit 72d1271
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/skeleton/app/routes/account.orders._index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ function OrderItem({order}: {order: OrderItemFragment}) {
return (
<>
<fieldset>
<Link to={`/account/orders/${order.id}`}>
<Link to={`/account/orders/${btoa(order.id)}`}>
<strong>#{order.number}</strong>
</Link>
<p>{new Date(order.processedAt).toDateString()}</p>
Expand Down

0 comments on commit 72d1271

Please sign in to comment.