Skip to content

Commit fe2cc44

Browse files
committed
lint
1 parent 0e69d2f commit fe2cc44

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

frontend/src/components/AlbumGrid.tsx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,9 @@ const AlbumGrid: React.FC<CollectionProps> = ({ data, onClickAlbum }) => (
4040
<h2>{options[0]}</h2>
4141
<IonGrid>
4242
<IonRow>
43-
{options[1].map((album, index) => {
44-
return (
45-
<AlbumGridEntry key={index} album={album} index={index} onClickAlbum={onClickAlbum} />
46-
)
47-
})}
43+
{options[1].map((album, index) => (
44+
<AlbumGridEntry key={index} album={album} index={index} onClickAlbum={onClickAlbum} />
45+
))}
4846
</IonRow>
4947
</IonGrid>
5048
</div>

0 commit comments

Comments
 (0)