Open Issues Need Help
View All on GitHubAI Summary: This GitHub issue identifies two code quality improvements. First, it points out that time formatting for new tasks in `src/App.vue` inconsistently pads minutes but not hours, suggesting a fix to pad both. Second, it highlights the lack of error handling in `localStorage` save operations within `src/storage.ts`, recommending `try-catch` blocks to prevent crashes in scenarios like private browsing or full storage.
AI Summary: The `npm run build` command is failing due to an incompatibility between `vue-tsc@^1.8.0` and newer versions of Vue (3.4.x) and TypeScript (5.3.x), coupled with redundant type declarations. The recommended fix involves updating `vue-tsc` to version `^2.0.0` or higher and removing the conflicting `src/vite-env.d.ts` file. An alternative solution is to add a build script that skips type checking.