We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bd8934 commit 955d1eaCopy full SHA for 955d1ea
1 file changed
packages/vue/src/plugin.ts
@@ -105,7 +105,10 @@ export const clerkPlugin: Plugin<[PluginOptions]> = {
105
}
106
107
clerk.value = window.Clerk;
108
- const loadOptions = { ...options, ui: { ...pluginOptions.ui, ClerkUI: clerkUICtorPromise } } as unknown as ClerkOptions;
+ const loadOptions = {
109
+ ...options,
110
+ ui: { ...pluginOptions.ui, ClerkUI: clerkUICtorPromise },
111
+ } as unknown as ClerkOptions;
112
await window.Clerk.load(loadOptions);
113
loaded.value = true;
114
0 commit comments