Skip to content

Commit

Permalink
Merge pull request #798 from AI4Bharat/login
Browse files Browse the repository at this point in the history
login page - email made case insensitive
  • Loading branch information
aparna-aa authored Aug 16, 2024
2 parents 12b5a8b + 9430070 commit a9544a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/containers/Organization/Project/ProjectReport.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import { Download } from "@mui/icons-material";
import MailIcon from "@mui/icons-material/Mail";
import { ColumnSelector } from "common";
import constants from "redux/constants";
import { Download } from "@mui/icons-material";
// import { Download } from "@mui/icons-material";

const ProjectReport = () => {
const { projectId } = useParams();
Expand Down
2 changes: 1 addition & 1 deletion src/containers/UserManagement/Login.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ const Login = () => {
};

const createToken = async () => {
const apiObj = new LoginAPI(credentials.email, credentials.password);
const apiObj = new LoginAPI(credentials.email.toLowerCase(), credentials.password);
dispatch(APITransport(apiObj));
};

Expand Down

0 comments on commit a9544a3

Please sign in to comment.