We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69ca381 commit 0efe78dCopy full SHA for 0efe78d
.changeset/eight-horses-nail.md
@@ -0,0 +1,5 @@
1
+---
2
+"@clerk/vue": patch
3
4
+
5
+Fixed an issue where the `transferable` prop in the `<SignIn />` component was incorrectly defaulting to `false` due to Vue's boolean prop coercion.
packages/vue/src/components/ui-components/SignIn.vue
@@ -5,7 +5,10 @@ import type { SignInProps } from '@clerk/types';
6
const clerk = useClerk();
7
8
-const props = defineProps<SignInProps>();
+const props = withDefaults(defineProps<SignInProps>(), {
9
+ transferable: undefined,
10
+ withSignUp: undefined,
11
+});
12
</script>
13
14
<template>
0 commit comments