Skip to content

Commit

Permalink
fix(fe): get more problems in admin (#1620)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimin9038 authored Mar 27, 2024
1 parent eec7c97 commit 0aaaaa1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/frontend/app/admin/contest/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default function Page() {
const { data, loading } = useQuery(GET_CONTESTS, {
variables: {
groupId: 1,
take: 100
take: 300
}
})

Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/app/admin/problem/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default function Page({
const { data, loading, refetch } = useQuery(GET_PROBLEMS, {
variables: {
groupId: 1,
take: 100,
take: 500,
input: {
difficulty: [
Level.Level1,
Expand Down

0 comments on commit 0aaaaa1

Please sign in to comment.