From 809eef2b02b41debe39823e0ea00c2c6dbd4093a Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Mon, 4 Dec 2023 10:37:30 -0300 Subject: [PATCH] Add edit and delete flight in the frontend Co-authored-by: shadad00 --- browser-domain/src/components/Home/Card/Card.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/browser-domain/src/components/Home/Card/Card.tsx b/browser-domain/src/components/Home/Card/Card.tsx index 051ed9b..6e91464 100644 --- a/browser-domain/src/components/Home/Card/Card.tsx +++ b/browser-domain/src/components/Home/Card/Card.tsx @@ -24,13 +24,20 @@ interface CardProps { subscribed: boolean; refresh: any; isAirline: boolean; +<<<<<<< HEAD isAdmin: boolean; +======= +>>>>>>> 8b9f006 (Add edit and delete flight in the frontend) refreshFlights: any; } const { Text } = Typography; +<<<<<<< HEAD export const Card: React.FC = ({ flight, user, subscribed, refresh, refreshFlights, isAirline, isAdmin }) => { +======= +export const Card: React.FC = ({ flight, user, subscribed, refresh, refreshFlights, isAirline }) => { +>>>>>>> 8b9f006 (Add edit and delete flight in the frontend) const [modalVisible, setModalVisible] = useState(false); const navigate = useNavigate(); @@ -158,7 +165,11 @@ export const Card: React.FC = ({ flight, user, subscribed, refresh, r {flight.id} +<<<<<<< HEAD {!isAirline && !isAdmin ? +======= + {!isAirline ? +>>>>>>> 8b9f006 (Add edit and delete flight in the frontend) ( !(subscribed) ?