diff --git a/front/components/V2/SearchBar.tsx b/front/components/V2/SearchBar.tsx
index 8c3c4e0..c18e7c5 100644
--- a/front/components/V2/SearchBar.tsx
+++ b/front/components/V2/SearchBar.tsx
@@ -106,6 +106,7 @@ const SearchBarComponent = () => {
style={{
display: 'flex',
flexDirection: 'row',
+ flexWrap: 'wrap',
justifyContent: 'space-between',
alignItems: 'center',
gap: 10,
@@ -115,6 +116,7 @@ const SearchBarComponent = () => {
horizontal={true}
style={{
paddingBottom: 10,
+ maxWidth: 1200,
}}
>
{
gap: 10,
}}
>
- {artistsQuery.data?.map((artist, index) => (
+ { !artist ? artistsQuery.data?.map((artist, index) => (
{
setArtist(artist.name);
}}
/>
- ))}
+ )) : null}