Skip to content

Commit b66d28a

Browse files
committed
fix: lower skills list query limit
1 parent dddee82 commit b66d28a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/routes/skills/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function SkillsIndex() {
4242
const highlightedOnly = search.highlighted ?? false
4343
const [query, setQuery] = useState(search.q ?? '')
4444

45-
const items = useQuery(api.skills.listWithLatest, { limit: 500 }) as
45+
const items = useQuery(api.skills.listWithLatest, { limit: 200 }) as
4646
| Array<{ skill: Doc<'skills'>; latestVersion: Doc<'skillVersions'> | null }>
4747
| undefined
4848
const isLoadingSkills = items === undefined

0 commit comments

Comments
 (0)