Skip to content

Commit

Permalink
[ui] Remove zero search results placeholder (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonalu authored Apr 10, 2024
2 parents 9e9c4fd + 926d751 commit 8c4f3eb
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions app/src/app/search/components/search-result-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@ export default function SearchResultTable() {
<Loader className="animate-spin duration-1000 h-8 w-8 stroke-ssb-dark" />
</div>
)}
{!isLoading && !searchResult?.statisticalUnits?.length && (
<div className="absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2">
<span>No results found</span>
</div>
)}
</div>
);
}

0 comments on commit 8c4f3eb

Please sign in to comment.