Skip to content

Commit d265058

Browse files
committed
style(clerk-js): fix import sort order in AuthCookieService
ESLint simple-import-sort/imports flagged pickFreshestJwt as misplaced. Move it to the correct alphabetical slot (after resources/Environment, before ./cookies/...).
1 parent c22e898 commit d265058

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/clerk-js/src/core/auth/AuthCookieService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ import { noop } from '@clerk/shared/utils';
1515
import { debugLogger } from '@/utils/debug';
1616
import { decode } from '@/utils/jwt';
1717

18-
import { pickFreshestJwt } from '../tokenFreshness';
1918
import { clerkMissingDevBrowser } from '../errors';
2019
import { eventBus, events } from '../events';
2120
import type { FapiClient } from '../fapiClient';
2221
import { Environment } from '../resources/Environment';
22+
import { pickFreshestJwt } from '../tokenFreshness';
2323
import { createActiveContextCookie } from './cookies/activeContext';
2424
import type { ClientUatCookieHandler } from './cookies/clientUat';
2525
import { createClientUatCookie } from './cookies/clientUat';

0 commit comments

Comments
 (0)