master
Tudor Stanciu 2021-11-07 04:41:34 +02:00
parent 805067e9c7
commit d5dc0ea80d
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ import { useToast } from "../context/ToastContext";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
export default function App() { export default function App() {
var { authenticated, messageCode } = useUserState(); const { authenticated, messageCode } = useUserState();
const { t } = useTranslation(); const { t } = useTranslation();
const { notify } = useToast(); const { notify } = useToast();

View File

@ -84,7 +84,7 @@ function Login(props) {
value={loginValue} value={loginValue}
onChange={(e) => setLoginValue(e.target.value)} onChange={(e) => setLoginValue(e.target.value)}
margin="normal" margin="normal"
placeholder="Email Adress" placeholder="Email address"
type="email" type="email"
fullWidth fullWidth
/> />