Skip to content

Commit

Permalink
chore(chrome-extension): Release Clean Up
Browse files Browse the repository at this point in the history
  • Loading branch information
tmilewski committed Oct 10, 2024
1 parent 15d1d83 commit 163bb22
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions packages/chrome-extension/src/internal/utils/jwt-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,8 @@ export function JWTHandler(store: StorageCache, params: JWTHandlerParams) {
}
}

const value = await store.get<string>(CACHE_KEY);

// Get current JWT from StorageCache
return value;
return await store.get<string>(CACHE_KEY);
};

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/chrome-extension/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "ES2022",
"target": "ES2019",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
Expand Down
2 changes: 0 additions & 2 deletions playground/chrome-extension/src/components/SharedApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ import { CurrentUser } from '@/components/CurrentUser';

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

console.log('VITE_CLERK_SYNC_HOST', import.meta.env.VITE_CLERK_SYNC_HOST);

export type SharedAppProps = Pick<ChromeExtensionClerkProviderProps, 'syncHost'> & {
className?: string;
};
Expand Down

0 comments on commit 163bb22

Please sign in to comment.