Skip to content

Commit e0942f3

Browse files
committed
fix(vue): Prevent boolean prop coercion for SignIn transferable option
1 parent 69ca381 commit e0942f3

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

  • packages/vue/src/components/ui-components

packages/vue/src/components/ui-components/SignIn.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ import type { SignInProps } from '@clerk/types';
55
66
const clerk = useClerk();
77
8-
const props = defineProps<SignInProps>();
8+
const props = withDefaults(defineProps<SignInProps>(), {
9+
transferable: undefined,
10+
withSignUp: undefined,
11+
});
912
</script>
1013

1114
<template>

0 commit comments

Comments
 (0)