Commit aecc9cec authored by Eric Rosenbaum's avatar Eric Rosenbaum

disable confirm button if there is a password validation error

parent 7f4ef784
...@@ -149,7 +149,7 @@ const TransferHostConfirmation = ({ ...@@ -149,7 +149,7 @@ const TransferHostConfirmation = ({
<button <button
className="button" className="button"
type="submit" type="submit"
disabled={passwordInputValue === ''} disabled={passwordInputValue === '' || validationError}
> >
<FormattedMessage id="studio.confirm" /> <FormattedMessage id="studio.confirm" />
</button> </button>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment