Skip to content

Commit

Permalink
fixing lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
avsomers25 committed Aug 29, 2023
1 parent 477ad89 commit c1fc7a6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Forgot.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const ForgotPage = (props) => {
setLoading(true);
setErrors("");
let email = document.getElementById("email").value;
let msg = await props.profile.Forgot(email)
let msg = await props.profile.Forgot(email);
if (msg.error) {
setLoading(false);
setErrors(msg.error);
Expand Down
2 changes: 1 addition & 1 deletion src/components/Profile.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ControlCameraSharp } from "@material-ui/icons";
//import { ControlCameraSharp } from "@material-ui/icons";
import { defaults } from "../Defaults";
import PropTypes from "prop-types";

Expand Down

0 comments on commit c1fc7a6

Please sign in to comment.