Skip to content

Commit

Permalink
Merge pull request #63 from vaibhavsTekdi/vs-feedback
Browse files Browse the repository at this point in the history
Issue #214413 fix: Fixed limit issue for attendance search API
  • Loading branch information
vaivk369 authored Feb 29, 2024
2 parents 1fc98dd + 99f3546 commit d1d46ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cohort/src/pages/CohortMemberList.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export default function CohortMemberList({ footerLinks, appName }) {
const getData = async () => {
const currentDate = new Date().toLocaleDateString("en-CA"); // Format: "yyyy-mm-dd"
const searchData = {
limit: "string",
limit: 100,
page: 0,
filters: {
contextId: { _eq: cohortId },
Expand Down

0 comments on commit d1d46ec

Please sign in to comment.