Skip to content

Commit

Permalink
Fix issue where we’re showing 0
Browse files Browse the repository at this point in the history
  • Loading branch information
danieltott committed Sep 20, 2023
1 parent 543141a commit fea3d92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/routes/__frontend/podcast/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default function PodcastsIndex() {
</>
)}
</div>
{latestEpisode.episodeSponsors.length && (
{!!latestEpisode.episodeSponsors.length && (
<>
<div className="mt-3">
<h4 className="h6 text-muted font-italic">
Expand Down

0 comments on commit fea3d92

Please sign in to comment.