2 Open Issues Need Help Last updated: Feb 28, 2026

Open Issues Need Help

View All on GitHub

AI Summary: This GitHub issue identifies two code quality improvements. First, it points out inconsistent time formatting in `src/App.vue` where hours are not padded with a leading zero, leading to displays like '9:5' instead of '09:05'. Second, it highlights a lack of error handling in `src/storage.ts` for `localStorage` save operations, which could cause application crashes in scenarios like privacy mode or full storage.

Complexity: 1/5
enhancement help wanted good first issue

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.

Complexity: 2/5
bug help wanted