Add task#1785
Conversation
mateacademy-ai-mentor
left a comment
There was a problem hiding this comment.
Review Summary
Great job! 🎉 Your implementation meets all the core requirements and works as expected. The only minor issue is that the jsx compiler option in your tsconfig.json is set to 'react', which is deprecated for React 17+. For future projects, consider updating it to 'react-jsx' to ensure compatibility with the latest React features. This doesn't affect your current functionality, so your PR is approved—keep up the good work! 🚀
✨ Please rate this review in the Platform's notification center1. I will be grateful for your feedback! ✨
Footnotes
| "src" | ||
| ], | ||
| "compilerOptions": { | ||
| "jsx": "react", |
There was a problem hiding this comment.
Issue: The 'jsx' compiler option is set to 'react', which is deprecated for React 17 and newer. If your project uses React 17 or above, you should use 'react-jsx' instead. Please update this value to ensure compatibility with the latest React JSX transform.
No description provided.