Fix the eslint warnings (#620)

This commit is contained in:
M. Mert Yıldıran 2022-01-11 12:30:35 +03:00 committed by GitHub
parent 0b7d535a81
commit 1ba444dba1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ import "./style/AuthBasePage.sass";
export const AuthPageBase: React.FC = ({children}) => {
return <div className="authContainer" style={{background: `url(${background})`, backgroundSize: "cover"}}>
<div className="authHeader">
<img src={logo}/>
<img alt="logo" src={logo}/>
</div>
{children}
</div>;

View File

@ -1,4 +1,4 @@
import { Button, TextField } from "@material-ui/core";
import { Button } from "@material-ui/core";
import React, { useContext, useState } from "react";
import { MizuContext, Page } from "../EntApp";
import { adminUsername } from "../consts";

View File

@ -1,4 +1,4 @@
import { Button, TextField } from "@material-ui/core";
import { Button } from "@material-ui/core";
import React, { useContext, useState } from "react";
import { toast } from "react-toastify";
import { MizuContext, Page } from "../EntApp";