Commit c8b92ce4 authored by dhrubesh-makeen's avatar dhrubesh-makeen
Browse files

removes hardcoding--2

parent d5cb1912
Showing with 5 additions and 4 deletions
+5 -4
export const IS_LOGGED_IN = "isLoggedIn";
\ No newline at end of file
......@@ -2,6 +2,7 @@ import React, { Suspense } from "react";
import { Layout, Spin } from "antd";
import { useThemeSwitcher } from "react-css-theme-switcher";
import ROUTES from "Src/constants/routes";
import { IS_LOGGED_IN } from "Src/constants/auth";
import {
BrowserRouter as Router,
Route,
......@@ -58,7 +59,7 @@ const App = () => {
path="/"
exact
render={() => {
return localStorage.getItem("isLoggedIn") === "yes" ? (
return localStorage.getItem(IS_LOGGED_IN) === "yes" ? (
<Redirect to={ROUTES.APPLICATION} />
) : (
<Redirect to={ROUTES.SIGN_UP} />
......
......@@ -2,6 +2,7 @@ import React, { useState } from "react";
import { Row, Space, Button, Input } from "antd";
import api, { apiV1 } from "../../api";
import ROUTES from "Src/constants/routes";
import { IS_LOGGED_IN } from "Src/constants/auth";
import { withRouter } from "react-router";
import { RouteComponentProps } from "react-router-dom";
......@@ -36,8 +37,6 @@ const Signup = (props: SignUpProps) => {
const handleSubmit = (e: any) => {
e.preventDefault();
console.log("in handle submit");
setState({ ...state, submitted: true });
const payload = {
......@@ -52,7 +51,7 @@ const Signup = (props: SignUpProps) => {
console.log(res.data);
});
localStorage.setItem("isLoggedIn", "yes");
localStorage.setItem(IS_LOGGED_IN, "yes");
props.history.push(ROUTES.APPLICATION);
};
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment