diff --git a/frontend/src/InteractiveSearch/InteractiveSearch.js b/frontend/src/InteractiveSearch/InteractiveSearch.js
index bc47e4e96..1581f2b69 100644
--- a/frontend/src/InteractiveSearch/InteractiveSearch.js
+++ b/frontend/src/InteractiveSearch/InteractiveSearch.js
@@ -119,33 +119,35 @@ function InteractiveSearch(props) {
{
- isFetching &&
-
+ isFetching ? : null
}
{
- !isFetching && !!error &&
+ !isFetching && error ?
Unable to load results for this album search. Try again later
-
+ :
+ null
}
{
- !isFetching && isPopulated && !totalReleasesCount &&
+ !isFetching && isPopulated && !totalReleasesCount ?
No results found
-
+ :
+ null
}
{
- !!totalReleasesCount && isPopulated && !items.length &&
+ !!totalReleasesCount && isPopulated && !items.length ?
All results are hidden by the applied filter
-
+ :
+ null
}
{
- isPopulated && !!items.length &&
+ isPopulated && !!items.length ?
+ :
+ null
}
{
- totalReleasesCount !== items.length && !!items.length &&
+ totalReleasesCount !== items.length && !!items.length ?
Some results are hidden by the applied filter
-
+ :
+ null
}
);