diff --git a/src/constants/steps.js b/src/constants/steps.js
index 3817716..9cf48a7 100644
--- a/src/constants/steps.js
+++ b/src/constants/steps.js
@@ -1,4 +1,4 @@
-import { GroupAdd, VpnKey } from "@material-ui/icons";
+import { GroupAdd, VpnKey, Settings } from "@material-ui/icons";
const steps = [
{
@@ -14,6 +14,13 @@ const steps = [
route: "/about",
disabled: false,
icon:
+ },
+ {
+ id: 2,
+ title: "Settings",
+ route: "/settings",
+ disabled: false,
+ icon:
}
];
diff --git a/src/features/login/components/LoginComponent.js b/src/features/login/components/LoginComponent.js
index 3130a11..491bdcc 100644
--- a/src/features/login/components/LoginComponent.js
+++ b/src/features/login/components/LoginComponent.js
@@ -3,10 +3,10 @@ import { makeStyles } from "@material-ui/core/styles";
import { TextField, InputAdornment } from "@material-ui/core";
import { AccountCircleOutlined, LockOutlined } from "@material-ui/icons";
-const useStyles = makeStyles((theme) => ({
+const useStyles = makeStyles(theme => ({
margin: {
- margin: theme.spacing(1),
- },
+ margin: theme.spacing(1)
+ }
}));
const LoginComponent = () => {
@@ -22,7 +22,7 @@ const LoginComponent = () => {
- ),
+ )
}}
/>
@@ -35,7 +35,7 @@ const LoginComponent = () => {
- ),
+ )
}}
/>