Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pages/email.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ export const MagicCodeForm = ({ onSubmit, disabled }) => {
groupClassName='d-flex flex-column justify-content-center gap-2'
inputType='text'
hideError // hide error message on every input, allow custom error message
disabled={disabled} // disable the form if no callback is provided
disabled={disabled}
autoComplete='one-time-code'
/>
<SubmitButton variant='primary' className='ps-4 pe-3' disabled={disabled}>enter <ArrowRightLineIcon height={20} width={20} className='ms-2' /></SubmitButton>
</Form>
Expand Down
Loading