Skip to content

Commit 63202fc

Browse files
committed
fix: dom validation p
1 parent 9a03df8 commit 63202fc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

web-marketplace/src/components/organisms/Order/Order.SummaryRow.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ export const OrderSummaryRow = ({
2525
>
2626
{title}
2727
</Title>
28-
<p
28+
<div
2929
className={cn(
3030
'text-grey-700 m-0 ml-5 p-0 text-sm',
3131
clampDescription ? 'line-clamp-2' : '',
3232
)}
3333
>
3434
{value}
35-
</p>
35+
</div>
3636
</div>
3737
);
3838
};

web-marketplace/src/components/organisms/Order/Order.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export const Order = ({ orderData, allowedDenoms, className }: OrderProps) => {
6969
[allowedDenoms, paymentInfo.askBaseDenom, paymentInfo.askDenom],
7070
);
7171

72-
const pricePerCredits = +displayTotalPrice / +credits;
72+
const pricePerCredits = +displayTotalPrice / +credits.credits;
7373

7474
return (
7575
<>

0 commit comments

Comments
 (0)