diff options
Diffstat (limited to 'modern/src/login/RegisterPage.js')
-rw-r--r-- | modern/src/login/RegisterPage.js | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/modern/src/login/RegisterPage.js b/modern/src/login/RegisterPage.js index cd6fc381..78728b58 100644 --- a/modern/src/login/RegisterPage.js +++ b/modern/src/login/RegisterPage.js @@ -7,6 +7,7 @@ import ArrowBackIcon from '@material-ui/icons/ArrowBack'; import LoginLayout from './LoginLayout'; import { useTranslation } from '../common/components/LocalizationProvider'; import { snackBarDurationShortMs } from '../common/util/duration'; +import { useCatch } from '../reactHelper'; const useStyles = makeStyles((theme) => ({ title: { @@ -33,7 +34,7 @@ const RegisterPage = () => { const [password, setPassword] = useState(''); const [snackbarOpen, setSnackbarOpen] = useState(false); - const handleSubmit = async () => { + const handleSubmit = useCatch(async () => { const response = await fetch('/api/users', { method: 'POST', headers: { 'Content-Type': 'application/json' }, @@ -41,13 +42,14 @@ const RegisterPage = () => { }); if (response.ok) { setSnackbarOpen(true); + } else { + throw Error(await response.text()); } - }; + }); return ( <LoginLayout> <Snackbar - anchorOrigin={{ vertical: 'top', horizontal: 'center' }} open={snackbarOpen} onClose={() => history.push('/login')} autoHideDuration={snackBarDurationShortMs} |