Skip to content

Commit 5043168

Browse files
fix: sold metric in seller (#462)
1 parent b47441c commit 5043168

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/pages/profile/seller/Seller.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,8 @@ export default function Seller() {
160160
}
161161
},
162162
{
163-
enableCurationList: false
163+
enableCurationList: false,
164+
withNumExchanges: true
164165
}
165166
);
166167
const {
@@ -345,7 +346,7 @@ export default function Seller() {
345346
margin="0"
346347
fontWeight="600"
347348
>
348-
{exchanges?.length ?? 0}
349+
{sellerProducts?.[0]?.numExchanges ?? 0}
349350
</Typography>
350351
</div>
351352
<div>

0 commit comments

Comments
 (0)