Commit 20ba4c3b by Madhankumar

login bug fix

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