fix(register): removed parseInt

This commit is contained in:
glazk0 2024-09-17 09:13:47 +02:00
parent 8949e55528
commit 51683d444d
No known key found for this signature in database
GPG key ID: E45BF177782B9FEB

View file

@ -68,7 +68,7 @@ export const actions: Actions = {
pseudo: form.data.pseudo,
email: form.data.email,
passwd: form.data.passwd,
code: parseInt(form.data.code),
code: form.data.code,
})
});