We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6fa5e1 commit b6d4401Copy full SHA for b6d4401
1 file changed
apps/frontend/src/modules/browse/components/HomePageComponent.tsx
@@ -87,7 +87,7 @@ export const HomePageComponent = () => {
87
</div>
88
<div className='h-6' />
89
<SongCardGroup data-test='recent-songs'>
90
- {(recentSongs || []).map((song, i) =>
+ {recentSongs.map((song, i) =>
91
// TODO: currently null = skeleton, undefined = ad slot. There must be a more robust system to indicate this.
92
song === undefined ? (
93
<SongCardAdSlot key={i} />
0 commit comments