center code in email

This commit is contained in:
Milo Schwartz
2025-01-04 23:08:45 -05:00
parent da6cc09961
commit b96be3b649
5 changed files with 50 additions and 6 deletions

View File

@@ -86,15 +86,15 @@ export default function InviteStatusCard({
router.push("/");
}}
>
Go home
Go Home
</Button>
);
} else if (type === "wrong_user") {
return (
<Button onClick={goToLogin}>Log in as different user</Button>
<Button onClick={goToLogin}>Log In as a Different User</Button>
);
} else if (type === "user_does_not_exist") {
return <Button onClick={goToSignup}>Create an account</Button>;
return <Button onClick={goToSignup}>Create an Account</Button>;
}
}