Skip to content

Commit

Permalink
sync fe changes
Browse files Browse the repository at this point in the history
  • Loading branch information
limivann committed Sep 12, 2024
1 parent ed90159 commit c5ed954
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/web/pages/merch/orders/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ const OrderSummary: React.FC = () => {
</Flex>
<Text fontSize="sm" color="grey">
Order date:{" "}
{orderState?.transaction_time
? new Date(`${orderState.transaction_time}`).toLocaleString(
{orderState?.transactionTime
? new Date(`${orderState.transactionTime}`).toLocaleString(
"en-sg"
)
: ""}
Expand Down Expand Up @@ -141,8 +141,8 @@ const OrderSummary: React.FC = () => {
<Flex flexDir="column" fontSize="sm" color="grey">
<Text>
Order date:{" "}
{orderState?.transaction_time
? new Date(`${orderState.transaction_time}`).toLocaleString(
{orderState?.transactionTime
? new Date(`${orderState.transactionTime}`).toLocaleString(
"en-sg"
)
: ""}
Expand Down

0 comments on commit c5ed954

Please sign in to comment.