Skip to content

Commit

Permalink
increase page limit
Browse files Browse the repository at this point in the history
  • Loading branch information
velascoandres committed May 21, 2024
1 parent 0f60eaf commit e4f7a06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/_whiteboards/hooks/use-find-user-whiteboards.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useMemo } from 'react'
import { transformSpace } from '@/app/_spaces/utils/transform-space'
import { api } from '@/trpc/react'

const DEFAULT_PER_PAGE = 10
const DEFAULT_PER_PAGE = 20

interface Options {
query?: {
Expand Down
2 changes: 1 addition & 1 deletion src/app/_whiteboards/hooks/use-whiteboard-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const useWhiteboardList = ({ query }: Options = { query: { spaceId: undef
page: currentPage,
query: {
spaceId: query?.spaceId,
search: currentSearch
search: currentSearch,
}
})

Expand Down

0 comments on commit e4f7a06

Please sign in to comment.