Open Issues Need Help
View All on GitHubAI Summary: The task involves modifying the backend of a Todo application to correctly load environment variables using the `dotenv` package. The current implementation loads environment variables after other modules, resulting in those modules not having access to them. The solution is to change the import statement from `import dotenv from "dotenv"` to `import "dotenv/config"` and remove the explicit `dotenv.config()` call, ensuring environment variables are available to all modules.
AI Summary: Correct a typo in the Todo app's import statement by changing "login" to "Login". If the import is unnecessary, remove it. The issue points out that the import is not currently used in the App component.
AI Summary: Add a 'Contributing' section to the project's README.md file, linking to the CONTRIBUTING.md file. This involves copying a provided template into the README and ensuring the link to CONTRIBUTING.md is correctly formatted.
AI Summary: Update the project's README.md file to include a link to the Figma design document under a descriptive heading, such as "Figma Design". This will make the design easily accessible to developers working on the frontend.