Remove debugger
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import React, { useRef } from 'react';
|
||||
import { Link as RouterLink } from 'react-router-dom';
|
||||
import { Button, Container, CssBaseline, Grid, Link, TextField, Typography } from '@material-ui/core';
|
||||
import { useUserContext } from '../Contexts/UserContext';
|
||||
import { useUserContext } from '../Contexts/UserContext';
|
||||
import useStyles from '../Styles';
|
||||
|
||||
export default function SignInForm() {
|
||||
@@ -14,8 +14,7 @@ export default function SignInForm() {
|
||||
event.preventDefault();
|
||||
const username = emailEl.current.value;
|
||||
const password = passwordEl.current.value;
|
||||
const result = await signIn(username, password);
|
||||
debugger;
|
||||
await signIn(username, password);
|
||||
}
|
||||
catch (e) {
|
||||
setError(e.message);
|
||||
|
||||
Reference in New Issue
Block a user