Skip to content

Commit cc1481a

Browse files
committed
feat: remove space and @ from user input atproto handle
1 parent 29d1ac0 commit cc1481a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/components/Header/AuthModal.client.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ async function handleCreateAccount() {
2222
2323
async function handleLogin() {
2424
if (handleInput.value) {
25-
await authRedirect(handleInput.value)
25+
await authRedirect(handleInput.value.trim().replace('@', ''))
2626
}
2727
}
2828
</script>

0 commit comments

Comments
 (0)