Open Issues Need Help
View All on GitHubAI Summary: New todos added to the list do not respect the current sort order, always appearing at the end instead of their correct position. The application should dynamically insert new todos based on the active sort criteria: appending/prepending for creation date sorts, and inserting alphabetically for title sorts, without requiring a page refresh. This issue applies to Demo Assignment 8+ and beyond.
todo list example app for mentors reviewing student submissions for Intro to React Curriculum V4
AI Summary: This issue identifies an inconsistency in API endpoint usage within the TodosPage.jsx file. The fetch operation uses '/api/tasks', while add, complete, and update operations use '/tasks'. The proposed fix is to adopt the '/api/...' prefix consistently across all CRUD operations.
todo list example app for mentors reviewing student submissions for Intro to React Curriculum V4