We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef7c61e commit 5ee4872Copy full SHA for 5ee4872
packages/clerk-js/src/core/resources/Session.ts
@@ -392,13 +392,6 @@ export class Session extends BaseResource implements SessionResource {
392
const shouldDispatchTokenUpdate = !template && organizationId === this.lastActiveOrganizationId;
393
394
if (cachedEntry) {
395
- debugLogger.debug(
396
- 'Using cached token (no fetch needed)',
397
- {
398
- tokenId,
399
- },
400
- 'session',
401
- );
402
const cachedToken = await cachedEntry.tokenResolver;
403
if (shouldDispatchTokenUpdate) {
404
eventBus.emit(events.TokenUpdate, { token: cachedToken });
0 commit comments