Skip to content

Commit

Permalink
misc: temporally fix fetching number of sessions to 2
Browse files Browse the repository at this point in the history
  • Loading branch information
lizable committed Sep 3, 2024
1 parent e950cd9 commit 6f6e27b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion react/src/pages/AdminDashboardPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const AdminDashboardPage: React.FC<AdminDashboardPageProps> = (props) => {
}
`,
{
limit: baiPaginationOption.limit,
limit: 2, //baiPaginationOption.limit,
offset: baiPaginationOption.offset,
group_id: projectId,
order,
Expand Down
2 changes: 1 addition & 1 deletion react/src/pages/DashboardPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ const DashboardPage: React.FC<DashboardPageProps> = (props) => {
}
`,
{
limit: baiPaginationOption.limit,
limit: 2, //baiPaginationOption.limit,
offset: baiPaginationOption.offset,
group_id: projectId,
order,
Expand Down

0 comments on commit 6f6e27b

Please sign in to comment.