|
@@ -136,14 +136,14 @@ const Cart = () => {
|
136
|
136
|
</TableCell>
|
137
|
137
|
|
138
|
138
|
<TableCell>
|
139
|
|
- <Typography variant='body2' sx={{ fontWeight: "bold", mb: 1 }}>{product.title}</Typography>
|
|
139
|
+ <Typography variant='body2' sx={{ fontWeight: "bold", mb: 1 }}>{(product.title == "Default Title") ? "" : product.title} </Typography>
|
140
|
140
|
|
141
|
|
- {product?.collections?.nodes?.map(({ title }) => (<Typography variant='body2'>{title}</Typography>))}
|
|
141
|
+ {product?.collections?.nodes?.map(({ title }) => (<Typography variant='body2'>{ (title == "Default Title") ? "" : title}</Typography>))}
|
142
|
142
|
|
143
|
143
|
</TableCell>
|
144
|
144
|
|
145
|
145
|
<TableCell align='center'>
|
146
|
|
- <Typography variant='body2' sx={{ fontWeight: "bold" }} >{title}</Typography>
|
|
146
|
+ <Typography variant='body2' sx={{ fontWeight: "bold" }} >{ (title == "Default Title") ? "" : title}</Typography>
|
147
|
147
|
</TableCell>
|
148
|
148
|
|
149
|
149
|
<TableCell align='center'>
|