auth minor fix

This commit is contained in:
tonyrewin 2022-09-17 22:15:55 +03:00
parent b3a671623a
commit cc35eb4017

View File

@ -99,7 +99,7 @@ export default (props: { code?: string; mode?: string }) => {
setError(t('Passwords are not equal')) setError(t('Passwords are not equal'))
} else { } else {
// FIXME use store actions // FIXME use store actions
const r = await apiClient.signUp({ const r = await apiClient.authRegiser({
email: emailElement?.value, email: emailElement?.value,
password: passElement?.value password: passElement?.value
}) })