Oops, don't cut off the items for default lists!
This commit is contained in:
parent
97fcebbf91
commit
f8748a2bcd
1 changed files with 6 additions and 1 deletions
|
@ -608,7 +608,12 @@ function ClosetList({ closetList, isCurrentUser, showHeading }) {
|
||||||
<ClosetListContents
|
<ClosetListContents
|
||||||
closetList={closetList}
|
closetList={closetList}
|
||||||
isCurrentUser={isCurrentUser}
|
isCurrentUser={isCurrentUser}
|
||||||
maxNumItemsToShow={14}
|
// For default lists, we don't have a separate page, we just inline
|
||||||
|
// them all here. This is a less-nice experience, but it simplifies
|
||||||
|
// the single-list page a lot to not have to care, and for now we just
|
||||||
|
// kinda expect that people who care about trade lists enough will
|
||||||
|
// group them into lists so it's nbd! ^_^`
|
||||||
|
maxNumItemsToShow={!closetList.isDefaultList ? 14 : null}
|
||||||
/>
|
/>
|
||||||
</Box>
|
</Box>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue