Skip to content

Commit 2b035f7

Browse files
committed
style: linted
1 parent a85708f commit 2b035f7

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/kit.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -505,15 +505,13 @@ export class SessionKit {
505505
// Call the `afterLogin` hooks that were registered by the LoginPlugins
506506
for (const hook of context.hooks.afterLogin) await hook(context)
507507

508-
509508
// Offer session key setup if configured and session does not have one yet
510509
if (this.sessionKeyManager && !session.hasSessionKey()) {
511510
try {
512511
await session.setupSessionKey()
513512
} catch (e) {
514513
// User cancelled or setup failed - continue with regular session
515514
// This is not a fatal error, the session is still valid
516-
console.log('Session key setup skipped or failed:', e)
517515
}
518516
}
519517
// Save the session to storage if it has a storage instance.

0 commit comments

Comments
 (0)