-
-
Notifications
You must be signed in to change notification settings - Fork 596
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Event Attendance Feature in Admin and User Portal #2388
Changes from 56 commits
846c89a
9e29cf3
65b1640
7f32fd2
58f7a99
e2f6a5a
0461ee2
b33fda6
5738fd6
3263112
108cb91
37ceafc
7d7083a
497aa21
df23de8
eef8264
90c8cf8
4d9edec
9de7a1f
338aa60
14fe149
66de4cb
bfcf39b
63faea3
99fdd0d
62c574c
d9ee88d
f3a4559
80b0e79
84ee971
05e8ba5
31a5b2b
2e4ebab
837f42a
16d14d2
afcdf92
ed410c7
11e2ad1
85b91c7
e75d904
bef72c5
2581c1f
2418ea4
dae3ecf
9851494
82e9baa
bf29bb9
93fdbfb
f36d7fc
a8d52db
f759f3b
85c2008
f83f61e
48f7799
1e96c52
53f9b54
3685762
81c9412
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -20,6 +20,8 @@ | |||||
"@mui/x-charts": "^7.22.1", | ||||||
"@mui/x-data-grid": "^7.22.1", | ||||||
"@mui/x-date-pickers": "^7.22.1", | ||||||
"@pdfme/schemas": "^5.1.6", | ||||||
"chart.js": "^4.4.6", | ||||||
"@pdfme/generator": "^5.0.0", | ||||||
"@reduxjs/toolkit": "^2.3.0", | ||||||
"@vitejs/plugin-react": "^4.3.2", | ||||||
|
@@ -40,9 +42,11 @@ | |||||
"js-cookie": "^3.0.1", | ||||||
"markdown-toc": "^1.2.0", | ||||||
"prettier": "^3.3.3", | ||||||
"prop-types": "^15.8.1", | ||||||
"react": "^18.3.1", | ||||||
"react-beautiful-dnd": "^13.1.1", | ||||||
"react-bootstrap": "^2.10.5", | ||||||
"react-chartjs-2": "^5.2.0", | ||||||
"react-datepicker": "^7.5.0", | ||||||
"react-dom": "^18.3.1", | ||||||
"react-google-recaptcha": "^3.1.0", | ||||||
|
@@ -117,6 +121,7 @@ | |||||
"@types/node-fetch": "^2.6.10", | ||||||
"@types/react": "^18.3.3", | ||||||
"@types/react-beautiful-dnd": "^13.1.8", | ||||||
"@types/react-chartjs-2": "^2.5.7", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Update @types/react-chartjs-2 to match react-chartjs-2 version. The Consider updating to the latest compatible type definitions: - "@types/react-chartjs-2": "^2.5.7",
+ "@types/react-chartjs-2": "^5.2.0", 📝 Committable suggestion
Suggested change
|
||||||
"@types/react-bootstrap": "^0.32.37", | ||||||
"@types/react-datepicker": "^7.0.0", | ||||||
"@types/react-dom": "^18.3.0", | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Consider using TypeScript instead of PropTypes.
While adding
prop-types
is valid, the project already uses TypeScript. Consider using TypeScript interfaces/types instead of runtime prop-types for better type safety and development experience.