Skip to content

Commit 1b78b47

Browse files
committed
Fixed CSS issue
1 parent 4334d00 commit 1b78b47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/OrderView/OrderView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const OrderView = ({ order }: OrderViewProps) => {
1414
const { createdAt, items, shippingAddress } = order;
1515

1616
return (
17-
<div data-testid="order-view" className="product paper border-paper">
17+
<div data-testid="order-view" className="order paper border-paper">
1818
<HorizontalContainer className="justify-between">
1919
<AddressView address={shippingAddress} />
2020
<p className="m-0">{DateUtils.formatISODate(createdAt)}</p>

0 commit comments

Comments
 (0)