pl-fe: fix threads not being displayed

Signed-off-by: mkljczk <git@mkljczk.pl>
This commit is contained in:
mkljczk
2025-03-13 21:45:54 +01:00
parent b2602a0acf
commit e57cee00d2

View File

@@ -415,13 +415,11 @@ const Thread: React.FC<IThread> = ({
placeholderComponent={() => <PlaceholderStatus variant='slim' />}
initialTopMostItemIndex={initialIndex}
itemClassName={itemClassName}
listClassName={
clsx({
'h-full': isModal,
})
}
listClassName={clsx({
'h-full': isModal,
})}
useWindowScroll={!isModal}
customScrollParent={node.current || undefined}
customScrollParent={isModal && node.current || undefined}
>
{children}
</ScrollableList>