Where:src/app.d.ts Why: TypeScript doesn't inherently know session.user.id exists, leading to hacky workarounds. Fix: Override @auth/sveltekit Session types in app.d.ts to include id and email strictly.
**Where:** `src/app.d.ts`
**Why:** TypeScript doesn't inherently know `session.user.id` exists, leading to hacky workarounds.
**Fix:** Override `@auth/sveltekit` Session types in `app.d.ts` to include `id` and `email` strictly.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Where:
src/app.d.tsWhy: TypeScript doesn't inherently know
session.user.idexists, leading to hacky workarounds.Fix: Override
@auth/sveltekitSession types inapp.d.tsto includeidandemailstrictly.