diff options
Diffstat (limited to 'frontend/src/components/modals/PasswordModal.js')
| -rw-r--r-- | frontend/src/components/modals/PasswordModal.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/components/modals/PasswordModal.js b/frontend/src/components/modals/PasswordModal.js index bf373cc..bf25eeb 100644 --- a/frontend/src/components/modals/PasswordModal.js +++ b/frontend/src/components/modals/PasswordModal.js @@ -1,6 +1,6 @@ import React, { useRef } from 'react'; import Modal from 'react-modal'; -import { PassInput } from '../Inputs' +import { Password } from '../Inputs' import { RightPad, LeftPad, ModalHeader, Padding } from './shared' import Error from '../Err'; @@ -36,7 +36,7 @@ const PasswordModal = (props) => { <ModalHeader><span role="img" aria-label="warning">🚧 </span>err: password protected</ModalHeader> </LeftPad> <RightPad> - <PassInput + <Password value={props.value} onChange={props.onChange} /> </RightPad> |