Skip to content

Commit 31b17c7

Browse files
committed
fix: Always show results
1 parent fa87554 commit 31b17c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ItemResults/TableView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function TableView({
6868
</Td>
6969
</Tr>
7070
)}
71-
{ results && results.features.length > 1 && (
71+
{ results && results.features.length > 0 && (
7272
results.features.map(({ id, collection }: StacItem) => (
7373
<Tr
7474
key={id}

0 commit comments

Comments
 (0)