Commit 20ba4c3b by Madhankumar

login bug fix

parent dc150d6d
{ {
"users": [ "users": [
{ {
"mobile": "1234567890",
"id": 1
},
{
"mobile": "9999999999", "mobile": "9999999999",
"id": 2 "id": 1
}, },
{ {
"mobile": "9999999998", "mobile": "9999999998",
"id": 3 "id": 2
},
{
"mobile": "8888888880",
"id": 4
},
{
"mobile": "3545556676",
"id": 5
} }
], ],
"reservedSeats": [ "reservedSeats": [
{ {
"seats": [ "seats": [
"E8", "E8",
"E7" "H4"
], ],
"id": 2 "id": 1
}, },
{ {
"seats": [ "seats": [
...@@ -35,23 +23,7 @@ ...@@ -35,23 +23,7 @@
"F3", "F3",
"F1" "F1"
], ],
"id": 3 "id": 2
},
{
"seats": [
"D1",
"D2",
"D3",
"E1"
],
"id": 4
},
{
"seats": [
"G3",
"H4"
],
"id": 5
} }
] ]
} }
\ No newline at end of file
...@@ -51,8 +51,9 @@ export function ContextProvider({ children }) { ...@@ -51,8 +51,9 @@ export function ContextProvider({ children }) {
const GetSeatById = async (id) => { const GetSeatById = async (id) => {
try { try {
const response = await api.GetSeatById(id); const response = await api.GetAllSeats();
return response; const result = response.filter((e) => e.id == id);
return result;
} catch (err) { } catch (err) {
toast.error(err.message); toast.error(err.message);
} }
......
...@@ -17,9 +17,9 @@ export function _Login() { ...@@ -17,9 +17,9 @@ export function _Login() {
//check seat length for already booked seats for the user //check seat length for already booked seats for the user
const userseat = await GetSeatById(users.id); const userseat = await GetSeatById(users.id);
if (Object.keys(userseat).length) { if (userseat.length) {
//if store the seat length in session //if store the seat length in session
sessionStorage.setItem("seatLimit", userseat.seats.length); sessionStorage.setItem("seatLimit", userseat[0].seats.length);
//redirect to booking component otherwise it will not redirect if not login //redirect to booking component otherwise it will not redirect if not login
sessionStorage.setItem("currentPath", "/booking"); sessionStorage.setItem("currentPath", "/booking");
navigate("/booking"); navigate("/booking");
......
Markdown is supported
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