Skip to content

Commit

Permalink
Merge pull request #329 from suvarnakale/shiksha-2.0
Browse files Browse the repository at this point in the history
Issue #000 chore: resolved Build issue
  • Loading branch information
itsvick authored Jul 1, 2024
2 parents 42acd61 + 45d50b9 commit 34f1afc
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/pages/manageUser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,15 @@ const facilitatorsList = [
},
];

const centersList = {
R12345678: [{ name: 'kamptee' }, { name: 'chimur' }],
S12345678: [{ name: 'Shirdi' }, { name: 'Nashik' }],
const centersList: CohortsData = {
R12345678: [
{ cohortId: 'R1', parentId: 'R12345678', name: 'kamptee' },
{ cohortId: 'R2', parentId: 'R12345678', name: 'chimur' },
],
S12345678: [
{ cohortId: 'S1', parentId: 'S12345678', name: 'Shirdi' },
{ cohortId: 'S2', parentId: 'S12345678', name: 'Nashik' },
],
};

const manageUsers = () => {
Expand Down

0 comments on commit 34f1afc

Please sign in to comment.