You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`.idea/` partially tracked (5 IDE-config files) — should be gitignored
`.playwright-mcp/` not ignored (61 entries from prior MCP test runs would land in commits)
`fix-dev-server.bat` and `start-dev.ps1` — Windows-only crutches that mask a Turbopack/AV/OneDrive watcher issue rather than fixing it; not portable to macOS/Linux contributors
`src/components/auth/verification/verificiation-token.ts` — typo in filename, with 2 callers
Fix
`.gitignore`: add `.idea/` and `.playwright-mcp/`
`git rm --cached` the 5 tracked `.idea/*` files
`git rm` the two Windows scripts
`git mv verificiation-token.ts → verification-token.ts` and update the 2 importers (`auth/tokens.ts:6`, `auth/verification/action.ts:4`)
Out of scope
The audit also flagged "two auth.ts files" as a possible dedup. Investigation showed they have different roles:
Severity
P2 — Tree hygiene
Context
Audit flagged:
Fix
Out of scope
Not a duplicate. Both kept as-is.
Acceptance criteria
Reference
Plan: PR-18.