Skip to content

Commit 69195b8

Browse files
RWEMAREMYshema-surge
authored andcommitted
advancing calender functionality
1 parent 4c34ae8 commit 69195b8

28 files changed

+4962
-1719
lines changed

jest.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
export default {
44
preset: 'ts-jest',
55
testEnvironment: 'jsdom',
6+
testEnvironmentOptions: {
7+
customExportConditions: [] // don't load "browser" field
8+
},
69
verbose: true,
710
collectCoverage: true,
811
coverageReporters: ['lcov', 'text'],

package-lock.json

Lines changed: 54 additions & 63 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@
3434
"@babel/preset-react": "^7.22.5",
3535
"@emotion/react": "^11.11.1",
3636
"@emotion/styled": "^11.11.0",
37-
"@fullcalendar/core": "^5.11.5",
38-
"@fullcalendar/daygrid": "^5.11.5",
39-
"@fullcalendar/interaction": "^5.11.5",
40-
"@fullcalendar/list": "^5.11.5",
41-
"@fullcalendar/react": "^5.11.5",
42-
"@fullcalendar/timegrid": "^5.11.5",
37+
"@fullcalendar/core": "^6.1.15",
38+
"@fullcalendar/daygrid": "^6.1.15",
39+
"@fullcalendar/interaction": "^6.1.15",
40+
"@fullcalendar/list": "^6.1.15",
41+
"@fullcalendar/react": "^6.1.15",
42+
"@fullcalendar/timegrid": "^6.1.15",
4343
"@headlessui/react": "^1.7.15",
4444
"@heroicons/react": "^1.0.6",
4545
"@iconify/react": "^3.2.2",

src/Mutations/User.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,10 @@ export const GET_ALL_TTL_USERS = gql`
5353
getAllTTLUsers(orgToken: $orgToken) {
5454
profile {
5555
name
56+
id
5657
}
5758
email
59+
role
5860
team {
5961
name
6062
cohort {

0 commit comments

Comments
 (0)