fix nan issue

This commit is contained in:
Abhinav 2023-08-30 12:08:25 +05:30
parent 08af0010c7
commit a1d6c43f08

View file

@ -23,7 +23,7 @@ const getCollectionRowListHeight = (
Math.min(
collectionRowList.length * CollectionRowItemSize + 32,
windowSize?.height - 177
) ?? 0;
) || 0;
interface Iprops {
collectionSummaries: CollectionSummary[];