From 1ba444dba18e610db5699e474843d3f1e4ba8c20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=2E=20Mert=20Y=C4=B1ld=C4=B1ran?= Date: Tue, 11 Jan 2022 12:30:35 +0300 Subject: [PATCH] Fix the eslint warnings (#620) --- ui/src/components/AuthPageBase.tsx | 2 +- ui/src/components/InstallPage.tsx | 2 +- ui/src/components/LoginPage.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/src/components/AuthPageBase.tsx b/ui/src/components/AuthPageBase.tsx index e98c014e7..6aa397757 100644 --- a/ui/src/components/AuthPageBase.tsx +++ b/ui/src/components/AuthPageBase.tsx @@ -7,7 +7,7 @@ import "./style/AuthBasePage.sass"; export const AuthPageBase: React.FC = ({children}) => { return
- + logo
{children}
; diff --git a/ui/src/components/InstallPage.tsx b/ui/src/components/InstallPage.tsx index 69241da98..5c88fca1d 100644 --- a/ui/src/components/InstallPage.tsx +++ b/ui/src/components/InstallPage.tsx @@ -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"; diff --git a/ui/src/components/LoginPage.tsx b/ui/src/components/LoginPage.tsx index 02b37058a..8ebc51372 100644 --- a/ui/src/components/LoginPage.tsx +++ b/ui/src/components/LoginPage.tsx @@ -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";