Skip to content

Commit c849ec2

Browse files
committed
chore(chrome-extension): Release Clean Up
1 parent 7735ae4 commit c849ec2

3 files changed

Lines changed: 2 additions & 6 deletions

File tree

packages/chrome-extension/src/internal/utils/jwt-handler.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,8 @@ export function JWTHandler(store: StorageCache, params: JWTHandlerParams) {
5555
}
5656
}
5757

58-
const value = await store.get<string>(CACHE_KEY);
59-
6058
// Get current JWT from StorageCache
61-
return value;
59+
return await store.get<string>(CACHE_KEY);
6260
};
6361

6462
/**

packages/chrome-extension/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2022",
3+
"target": "ES2019",
44
"lib": ["dom", "dom.iterable", "esnext"],
55
"allowJs": true,
66
"skipLibCheck": true,

playground/chrome-extension/src/components/SharedApp.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ import { CurrentUser } from '@/components/CurrentUser';
88

99
const publishableKey = import.meta.env.VITE_CLERK_PUBLISHABLE_KEY || '';
1010

11-
console.log('VITE_CLERK_SYNC_HOST', import.meta.env.VITE_CLERK_SYNC_HOST);
12-
1311
export type SharedAppProps = Pick<ChromeExtensionClerkProviderProps, 'syncHost'> & {
1412
className?: string;
1513
};

0 commit comments

Comments
 (0)