minor ui
This commit is contained in:
parent
0fe6a195ed
commit
b209a77be9
2 changed files with 2 additions and 2 deletions
|
|
@ -54,7 +54,7 @@ const Footer = ({brandingSettings}) => {
|
||||||
</Typography>
|
</Typography>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<Grid item xs={12} sm={4}>
|
<Grid item xs={12} sm={4} align="center">
|
||||||
<Typography variant="h6" color="text.primary" gutterBottom>
|
<Typography variant="h6" color="text.primary" gutterBottom>
|
||||||
{brandingSettings?.site_quicklinks_title || `Quick Links`}
|
{brandingSettings?.site_quicklinks_title || `Quick Links`}
|
||||||
</Typography>
|
</Typography>
|
||||||
|
|
|
||||||
|
|
@ -162,7 +162,7 @@ const CartPage = () => {
|
||||||
<Card sx={{ height: '100%' }}>
|
<Card sx={{ height: '100%' }}>
|
||||||
<CardMedia
|
<CardMedia
|
||||||
component="img"
|
component="img"
|
||||||
image={item.primary_image.path ? imageUtils.getImageUrl(item.primary_image.path) : "https://placehold.co/600x400/000000/FFFF"}
|
image={item.primary_image?.path ? imageUtils.getImageUrl(item.primary_image.path) : "https://placehold.co/600x400/000000/FFFF"}
|
||||||
alt={item.name}
|
alt={item.name}
|
||||||
sx={{ height: 80, objectFit: 'cover' }}
|
sx={{ height: 80, objectFit: 'cover' }}
|
||||||
/>
|
/>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue