diff --git a/webapp/channels/src/components/password_reset_form/__snapshots__/password_reset_form.test.tsx.snap b/webapp/channels/src/components/password_reset_form/__snapshots__/password_reset_form.test.tsx.snap index 52c1bf5d0f..f058a4b219 100644 --- a/webapp/channels/src/components/password_reset_form/__snapshots__/password_reset_form.test.tsx.snap +++ b/webapp/channels/src/components/password_reset_form/__snapshots__/password_reset_form.test.tsx.snap @@ -29,17 +29,12 @@ exports[`components/PasswordResetForm should match snapshot 1`] = `
- diff --git a/webapp/channels/src/components/password_reset_form/password_reset_form.tsx b/webapp/channels/src/components/password_reset_form/password_reset_form.tsx index 59bcf3acaa..ee9d6c94f6 100644 --- a/webapp/channels/src/components/password_reset_form/password_reset_form.tsx +++ b/webapp/channels/src/components/password_reset_form/password_reset_form.tsx @@ -3,15 +3,12 @@ import classNames from 'classnames'; import React, {useState, useRef, memo} from 'react'; -import {FormattedMessage} from 'react-intl'; +import {FormattedMessage, useIntl} from 'react-intl'; import {useHistory} from 'react-router-dom'; import type {ServerError} from '@mattermost/types/errors'; -import LocalizedInput from 'components/localized_input/localized_input'; - import Constants from 'utils/constants'; -import {t} from 'utils/i18n'; interface Props { location: {search: string}; @@ -22,6 +19,8 @@ interface Props { } const PasswordResetForm = ({location, siteName, actions}: Props) => { + const intl = useIntl(); + const history = useHistory(); const [error, setError] = useState(null); @@ -67,19 +66,20 @@ const PasswordResetForm = ({location, siteName, actions}: Props) => {

-