Commit d1a6c3b3 by Manivasagam S

code changes

parent a9cda027
......@@ -16,7 +16,7 @@ export default {
args: {
seatOptions,
setSeatCount: action("Seat count changed"),
setSeatCount: action("setSeatCount"),
onClose: action("Continue clicked"),
},
};
......
......@@ -118,9 +118,9 @@
@keyframes glow {
from {
filter: drop-shadow(0 0 5px #ffffff);
filter: drop-shadow(0 0 5px #aada1c);
}
to {
filter: drop-shadow(0 0 20px #eff0ef);
filter: drop-shadow(0 0 20px #c8d92f);
}
}
......@@ -22,7 +22,7 @@ export default {
export const Success = (args) => <Notification {...args} />;
Success.args = {
title: 'Success!!!',
title: 'Success🎉',
type: 'success',
msg: 'Successfully booked your ticket!',
image:successImg,
......
......@@ -5,7 +5,7 @@ import { Button } from "../../../Base/Buttons/Button";
export const Success = () => {
const response = {
title: 'Success!!!',
title: 'Success🎉',
type: 'success',
msg: 'Successfully booked your ticket!',
};
......@@ -23,7 +23,7 @@ export const Success = () => {
}, []);
const handleSuccess = () => {
window.location.replace('/select-seat');
window.location.replace('/booking');
};
return (
......
......@@ -96,7 +96,7 @@ export const Selectseat = ({ onLogout }) => {
})
.then(res => {
if (res) {
toast.success("Seats updated!");
toast.success("Seats booked!");
setSelectedSeats([]);
setTimeout(() => {
window.location.replace("/success");
......
......@@ -18,12 +18,10 @@
"phoneNumber": "9361775481",
"name": "mani",
"reservedSeats": [
"B3",
"B2",
"B1",
"D6",
"D7",
"C7"
"A4",
"A5",
"A6",
"B7"
]
},
{
......
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