diff --git a/frontend/src/pages/Channel.jsx b/frontend/src/pages/Channel.jsx index 13a54ad..9f17e7c 100644 --- a/frontend/src/pages/Channel.jsx +++ b/frontend/src/pages/Channel.jsx @@ -412,30 +412,43 @@ export default function ChannelPage() { ) : ( -
+
{playlists.map(pl => ( - + {/* Info */} +
+

{pl.title}

+ + {pl.indexed_at ? "Indexed" : "Not indexed"} + + {pl.description && ( +

{pl.description}

+ )} + +
+
))}
)}