Skip to content

Commit

Permalink
fix(clerk-js): Wrong import path for types in headless variant (#1848)
Browse files Browse the repository at this point in the history
  • Loading branch information
panteliselef authored Oct 10, 2023
1 parent 5a3995b commit 25cfa7a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/polite-elephants-travel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@clerk/clerk-js': patch
---

Fix incorrect path of types for the clerk-js headless variant.
4 changes: 2 additions & 2 deletions packages/clerk-js/headless/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Clerk from '../dist/types/src/index.headless';
import Clerk from '../dist/types/index.headless';

export default Clerk;
export * from '../dist/types/src/index.headless';
export * from '../dist/types/index.headless';

0 comments on commit 25cfa7a

Please sign in to comment.