Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
benjipott committed Nov 14, 2023
1 parent d3af4f3 commit 8279898
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const defaultsByBackend: { [key in SupportedAuthProviders]: DeepRequired<Extract
signInResponseTokenPointer: '/token',
type: 'Bearer',
headerName: 'Authorization',
maxAgeInSeconds: undefined,
maxAgeInSeconds: 30 * 60,
sameSiteAttribute: 'lax',
name: 'auth:token'
},
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/composables/local/useAuthState.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { CookieRef } from '#app'
import { useCookie, useRuntimeConfig, useState } from '#imports'
import { ComputedRef, computed, watch } from 'vue'
import { useTypedBackendConfig } from '../../helpers'
import { CommonUseAuthStateReturn } from '../../types'
import { makeCommonAuthState } from '../commonAuthState'
import { useCookie, useRuntimeConfig, useState } from '#imports'
// @ts-expect-error - #auth not defined
import type { SessionData } from '#auth'

Expand Down

0 comments on commit 8279898

Please sign in to comment.