fixing when to render onboarding channel section

This commit is contained in:
dekzter 2025-04-21 16:23:55 -04:00
parent 4df796ac7f
commit 21c67b999d

View file

@ -1210,7 +1210,7 @@ const ChannelsTable = ({}) => {
{/* Table or ghost empty state inside Paper */}
<Box>
{initialDataCount === 0 && (
{initialDataCount === 0 && data.length === 0 && (
<Box
style={{
paddingTop: 20,
@ -1288,7 +1288,7 @@ const ChannelsTable = ({}) => {
)}
</Box>
{initialDataCount > 0 && (
{data.length > 0 && (
<Box
style={{
display: 'flex',