diff --git a/pages/explore/explore.pixy b/pages/explore/explore.pixy index 975586b9..a19ba9cf 100644 --- a/pages/explore/explore.pixy +++ b/pages/explore/explore.pixy @@ -3,7 +3,10 @@ component ExploreAnime(animeList []*arn.Anime, year string, status string, typ s h1.page-title Explore - AnimeGrid(animeList) + if len(animeList) == 0 + p.no-data.mountable No anime found using the above filters. + else + AnimeGrid(animeList) component ExploreFilters(year string, status string, typ string) .explore-filters