fix empty channel tags conditional

This commit is contained in:
Simon
2025-02-17 17:53:29 +07:00
parent 711488b471
commit cfcb4e6f9e

View File

@@ -226,7 +226,7 @@ const ChannelAbout = () => {
</div> </div>
)} )}
{channel.channel_tags && ( {channel.channel_tags.length > 0 && (
<div className="description-box"> <div className="description-box">
<div className="video-tag-box"> <div className="video-tag-box">
{channel.channel_tags.map(tag => { {channel.channel_tags.map(tag => {