Skip to content

Commit

Permalink
fix: make sure the artistID is not null in SavedSearchAlertsList (#9356)
Browse files Browse the repository at this point in the history
  • Loading branch information
MounirDhahri authored Sep 29, 2023
1 parent 6ed439d commit 29b9e2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const SavedSearchAlertsListQueryRenderer: React.FC<Props> = ({ artistID }
}
`}
variables={{
artistIDs: [artistID],
artistIDs: artistID ? [artistID] : [],
}}
cacheConfig={{ force: true }}
render={renderWithPlaceholder({
Expand Down

0 comments on commit 29b9e2c

Please sign in to comment.