Commit d1a6c3b3 by Manivasagam S

code changes

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