Fixed CI and good to merge

This commit is contained in:
Clément Le Bihan
2023-12-07 16:52:35 +01:00
parent 1c1596b44a
commit 7d7f886661
+10 -11
View File
@@ -140,17 +140,16 @@ const SearchBarComponent = () => {
gap: 10,
}}
>
{!artist
? artistsQuery.data?.map((artist, index) => (
<ArtistChipComponent
key={index}
name={artist.name}
onPress={() => {
setArtist(artist.name);
}}
/>
))
: null}
{!artist &&
artistsQuery.data?.map((artist, index) => (
<ArtistChipComponent
key={index}
name={artist.name}
onPress={() => {
setArtist(artist.name);
}}
/>
))}
</View>
</ScrollView>
<View>