Skip to content

Commit

Permalink
potentially fixes the deployment issue
Browse files Browse the repository at this point in the history
  • Loading branch information
BurhanCantCode committed Jul 31, 2024
1 parent ed59228 commit 656cb74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/ProductCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const ProductCard: React.FC<ProductCardProps> = ({ product, onUpdate }) => {
React.createElement(
CardContent,
{ sx: { flexGrow: 1, display: 'flex', flexDirection: 'column', justifyContent: 'space-between' } },
React.createElement(Typography, { variant: "h6", component: "div", gutterBottom: true }, product.name),
React.createElement(Typography, { variant: "h6", gutterBottom: true }, product.name),
React.createElement(
Box,
{ sx: { display: 'flex', alignItems: 'center', justifyContent: 'space-between', mt: 2 } },
Expand Down

0 comments on commit 656cb74

Please sign in to comment.