Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: missing import #60

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/runtime/server/middleware/kinde.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { defineEventHandler } from 'h3'

import { getKindeClient } from '../utils/client'
import { getSession, updateSession, clearSession } from '#imports'
import { getSession, updateSession, clearSession, useRuntimeConfig } from '#imports'

export default defineEventHandler(async event => {
const sessionManager = await createSessionManager(event)
Expand Down Expand Up @@ -61,7 +61,7 @@
}
}

type Slice<T extends Array<any>> = T extends [infer _A, ...infer B] ? B : never

Check warning on line 64 in src/runtime/server/middleware/kinde.ts

View workflow job for this annotation

GitHub Actions / ci

'_A' is defined but never used

declare module 'h3' {
interface H3EventContext {
Expand Down