This commit is contained in:
Julian 2023-04-25 17:54:21 -04:00
parent 03ff799dfd
commit ebea014083
Signed by: NotNite
GPG key ID: BD91A5402CCEB08A

View file

@ -74,7 +74,8 @@ export default function RegisterForm({ ticket }: { ticket: string }) {
].map((ref) => ref.current?.value);
const avatar = avatarRef.current?.files?.[0];
const avatarBase64 = avatar != null ? fileAsBase64(avatar!) : null;
const avatarBase64 =
avatar != null ? await fileAsBase64(avatar!) : null;
if (password !== confirmPassword) {
setPasswordMismatch(true);