Skip to content

Commit

Permalink
fix(entities): default filter size to 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiarrowood committed Mar 18, 2024
1 parent 73ede6e commit c31c765
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function useDebouncedFilter(
// size defaulted to 100 in hopes of retrieving all available
// entries until better server-side filtering is offered
if (!size) {
size = '100'
size = '1000'
}

// Is this reactive?
Expand Down

0 comments on commit c31c765

Please sign in to comment.