We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceec922 commit d52aca6Copy full SHA for d52aca6
src/components/ReturnFlights/index.js
@@ -16,7 +16,7 @@ export const ReturnFlights = ({
16
return (
17
<Grid container className={classes.root}>
18
<Grid item className={classes.margin}>
19
- <FlightDetailCard from={from} to={to} flight={flight} onClose={onClose} headerName={'Departure flight'} />
+ <FlightDetailCard from={from} to={to} flight={flight} onClose={'onClose'} headerName={'Departure flight'} />
20
</Grid>
21
<Grid item>
22
<SearchResults
@@ -35,7 +35,6 @@ const useStyles = makeStyles(theme => ({
35
marginTop: theme.spacing(8)
36
},
37
margin: {
38
- marginLeft: theme.spacing(1),
39
- marginRight: theme.spacing(1)
+ margin: theme.spacing(1)
40
}
41
}));
0 commit comments