conform to linter

This commit is contained in:
keyan 2023-07-31 08:39:10 -05:00
parent c909efb7b7
commit d2216e80da
2 changed files with 14 additions and 9 deletions

View File

@ -372,14 +372,19 @@ function AuthMethods ({ methods }) {
return (
<>
<div className='form-label mt-3'>auth methods</div>
{err && <Alert variant='danger' onClose={() => {
{err && (
<Alert
variant='danger' onClose={() => {
const { pathname, query: { error, nodata, ...rest } } = router
router.replace({
pathname,
query: { nodata, ...rest }
}, { pathname, query: { ...rest } }, { shallow: true })
setErr(undefined)
}} dismissible>{err}</Alert>}
}} dismissible
>{err}
</Alert>
)}
{providers?.map(provider => {
if (provider === 'email') {