Skip to content

Commit 7b97a00

Browse files
committed
Added margins when the tag list is hidden
1 parent 285b715 commit 7b97a00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/Search/Search.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export function Search({ tags }: SearchProps) {
6161
setProjects((prev) =>
6262
pageToFetch === 1 || reset
6363
? (data.results ?? [])
64-
: [...prev, ...(data.results ?? [])],
64+
: [...prev, ...(data.results ?? [])]
6565
);
6666

6767
setHasMore((data.results?.length ?? 0) >= 20);

0 commit comments

Comments
 (0)