fix: missing translations on reset password page

This commit is contained in:
Elias Schneider
2023-12-29 18:09:31 +01:00
parent 5781a7b540
commit 7a301b455c

View File

@@ -68,13 +68,13 @@ const ResetPassword = () => {
})}
>
<PasswordInput
label={t("resetPassword.text.password")}
label={t("resetPassword.input.password")}
placeholder="••••••••••"
{...form.getInputProps("password")}
/>
<Group position="right" mt="lg">
<Button type="submit" className={classes.control}>
<FormattedMessage id="resetPassword.button.resetPassword" />
<FormattedMessage id="resetPassword.text.resetPassword" />
</Button>
</Group>
</form>