Skip to content
Snippets Groups Projects

fix profile viewing

Merged Marc Taylor requested to merge profile-display-logged-in into main
2 files
+ 34
61
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -63,13 +63,14 @@ const Home = () => {
<Typography
variant='h3'
color='primary'
paddingLeft={5}
>
All products
</Typography>
<Grid container spacing={2}>
{products.map((product) => (
<Grid key={product.id} item xs={12} sm={6} md={4} lg={3}>
<Grid key={product.id} item xs={12} sm={6} md={4} lg={3} display={'flex'} justifyContent={'center'}>
<Product
id={product.id}
ownerID={product.user_id}
Loading