Skip to content

Commit 486c0c1

Browse files
fix login activities
new advancing calender functionality (#480) adding undrop trainee feature (#532) * fixing teams cards * fixing teams cards --------- Co-authored-by: Igor IHIMBAZWE <[email protected]> fix unresponsive footer (#544) implement attendance (#497) Co-authored-by: “kebean” <“[email protected]”> fix layout crashing while scrolling in teams on dashboard (#552) advancing calender functionality (#480) (#531) Co-authored-by: RWEMAREMY <[email protected]> resolve blank page (#535) * fixing teams cards (#548) * fixing teams cards --------- Co-authored-by: Igor IHIMBAZWE <[email protected]> Co-authored-by: Igor IHIMBAZWE <[email protected]> fixing all issues introduced in tickets CRUD (#533) fix(implement fix on action button): (#569) - restrict extra white space to display when the action Modal opens Update Invite Form for email and role validation (#567) Disable filter button when no role or status selected and update only invitations with a pending status (#565) fix(attendance): fixes recording attendance bug (#550) fix updated ratings page (#568)
1 parent 73792fb commit 486c0c1

File tree

127 files changed

+8005
-4672
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+8005
-4672
lines changed

index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@
4040
href="https://fonts.googleapis.com/css2?family=Inria+Serif:ital@1&family=Lexend+Deca:wght@600&family=Open+Sans:wght@300;400;600;700;800&display=swap"
4141
rel="stylesheet"
4242
/> -->
43+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css"
44+
integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg=="
45+
crossorigin="anonymous" referrerpolicy="no-referrer" />
4346

4447
<link
4548
href="https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&display=swap"

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: 73 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 8 additions & 7 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",
@@ -115,7 +115,7 @@
115115
"zod": "^3.23.8"
116116
},
117117
"devDependencies": {
118-
"@apollo/client": "^3.8.7",
118+
"@apollo/client": "^3.11.8",
119119
"@babel/core": "^7.22.9",
120120
"@babel/preset-env": "^7.22.9",
121121
"@heroicons/react": "^1.0.6",
@@ -158,6 +158,7 @@
158158
"jest": "^28.1.3",
159159
"jest-axe": "^8.0.0",
160160
"jest-environment-jsdom": "^28.1.3",
161+
"jest-fetch-mock": "^3.0.3",
161162
"jest-image-snapshot": "^6.1.0",
162163
"lint-staged": "^13.2.3",
163164
"mini-css-extract-plugin": "^2.7.6",

0 commit comments

Comments
 (0)