Skip to content

Commit ba2b00c

Browse files
authored
fix(vue): Set initial value of clientCtx to undefined (#5324)
1 parent c8376a7 commit ba2b00c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/fuzzy-pillows-doubt.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@clerk/vue': patch
3+
---
4+
5+
Bug fix: Update the initial value of `clientCtx` to `undefined` to correctly infer that `clerk` is defined.(https://github.com/clerk/javascript/pull/5324#discussion_r1989445357)

packages/vue/src/plugin.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export const clerkPlugin: Plugin = {
3636
const clerk = shallowRef<Clerk | null>(null);
3737

3838
const resources = ref<Resources>({
39-
client: {} as ClientResource,
39+
client: undefined as unknown as ClientResource,
4040
session: undefined,
4141
user: undefined,
4242
organization: undefined,

0 commit comments

Comments
 (0)