diff --git a/src/components/SignInAtproto.vue b/src/components/SignInAtproto.vue index ff2fdd2..d71d706 100644 --- a/src/components/SignInAtproto.vue +++ b/src/components/SignInAtproto.vue @@ -5,6 +5,15 @@ import { useATProtoLogin } from "@/hooks/useATProtoLogin.hook" const { handle, isLoggedIn, signIn, signOut } = useATProtoLogin() +withDefaults( + defineProps<{ + withSignOut?: boolean + }>(), + { + withSignOut: true, + }, +) + const inputHandle = ref("") const onSignIn = () => { @@ -17,7 +26,9 @@ const onSignIn = () => { diff --git a/src/components/SignInGithub.vue b/src/components/SignInGithub.vue index 151aca4..98a458a 100644 --- a/src/components/SignInGithub.vue +++ b/src/components/SignInGithub.vue @@ -1,20 +1,20 @@