aboutsummaryrefslogtreecommitdiff
path: root/FrontEnd/src/views/login/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'FrontEnd/src/views/login/index.tsx')
-rw-r--r--FrontEnd/src/views/login/index.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/FrontEnd/src/views/login/index.tsx b/FrontEnd/src/views/login/index.tsx
index 3ea505bb..cc1d9865 100644
--- a/FrontEnd/src/views/login/index.tsx
+++ b/FrontEnd/src/views/login/index.tsx
@@ -1,4 +1,4 @@
-import React from "react";
+import * as React from "react";
import { Link, useNavigate } from "react-router-dom";
import { useTranslation, Trans } from "react-i18next";
@@ -9,7 +9,7 @@ import LoadingButton from "../common/button/LoadingButton";
import "./index.css";
-const LoginPage: React.FC = (_) => {
+const LoginPage: React.FC = () => {
const { t } = useTranslation();
const navigate = useNavigate();