Daily review 2026-07-07 - #71
Draft
NghaReformer wants to merge 2 commits into
Draft
Conversation
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KfSjvFSkKcF9VmSV9Fxhho
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01KfSjvFSkKcF9VmSV9Fxhho
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Automated daily code and curriculum review for 2026-07-07.
Full report:
reports/daily/2026-07-07.mdSummary
i18n parity: PASSED (1 331 keys, EN ↔ FR identical)
Svelte 5 runes: PASSED (zero banned Svelte 4 patterns)
Bugs found: 10 (2 high, 5 medium, 3 low)
Bugs & Issues
HIGH
src/lib/components/feedback/FeedbackForm.svelte:7— Client Svelte component importsimport typefrom$lib/server/db/types. SvelteKit boundary violation; any future value import would silently leak server code. Fix: moveFeedbackType/FeedbackSeverityto a shared non-server types file.src/routes/api/feedback/validation.ts:5— File is not suffixed.server.tsbut imports from$lib/server/db/types. SvelteKit cannot enforce the boundary. Fix: rename tovalidation.server.ts.MEDIUM
CategoryBreakdownDonut.svelte:30-40—CATEGORY_COLORSJS object with 9 hardcoded hex literals used as SVG strokes. Theme changes intokens.tswon't affect these. Fix: read fromgetComputedStyleCSS custom properties at mount.MatchingPairsOverlay.svelte:30-35—COLORJS object with 4 hardcoded hex literals for SVG connector lines. Same fix as above.Six files —
color: #fff/color: white— White text hardcoded on accent-colored backgrounds inlearn/+page.svelte:202,chart-of-accounts/+page.svelte:423,458,EntryHistory.svelte:400,TransactionJournal.svelte:395,ScenarioWalkthrough.svelte:333,387. Fix: add--text-on-accenttoken.ScheduleTable.svelte:215-267(10 instances) — Directrgba()values for flag/row tints without CSS variable wrappers. Fix: replace withcolor-mix(in srgb, var(--amber/--green/--error) N%, transparent).CVP playground (12 instances) —
background: rgba(255,255,255,0.02)used directly;--bg-subtletoken already exists for this. Fix: replace withvar(--bg-subtle).ShareButton.svelte:22—document.execCommand('copy')is deprecated and removed from the WHATWG spec. The app runs on HTTPS so thenavigator.clipboardprimary path always succeeds. Fix: remove the fallback branch.LOW
CategoryBreakdownDonut.svelte:105— Hardcoded English SVG text"items"bypasses i18n. Fix: accept anitemsLabelprop, add key to both locale files.src/lib/data/playgrounds.ts:26-36— StalestaticFileandlineCountforcvpandjournal-entry(both now native modules; field is never read). Fix: removestaticFile, setlineCount: 0.New Playground Ideas (5)
🤖 Generated with Claude Code
https://claude.ai/code/session_01KfSjvFSkKcF9VmSV9Fxhho
Generated by Claude Code