Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: make operations page_size to 20
  • Loading branch information
astandrik committed Jul 2, 2025
commit 02a956933084992f2db508a00251f64933137ddd
2 changes: 1 addition & 1 deletion src/containers/Operations/useOperationsInfiniteQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const DEFAULT_SCROLL_MARGIN = 100;
export function useOperationsInfiniteQuery({
database,
kind,
pageSize = 10,
pageSize = 20,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If it was a constant... :)

searchValue,
scrollContainerRef,
}: UseOperationsInfiniteQueryProps) {
Expand Down