Skip to content

Commit

Permalink
Comment out matching form temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
jolynloh committed Sep 29, 2024
1 parent 4446e92 commit 482d587
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ export const createImageLink = async (

const uploadPromises = files.map((file) => uploadFileToFirebase(file));
const imageUrls = await Promise.all(uploadPromises);
console.log(imageUrls);
res
.status(200)
.json({ message: "Images uploaded successfully", imageUrls });
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/pages/Home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const Home: React.FC = () => {
objectFit: "contain",
}}
/> */}
<Card
{/* <Card
sx={{
padding: 4,
width: "100%",
Expand Down Expand Up @@ -269,7 +269,7 @@ const Home: React.FC = () => {
>
Find my match!
</Button>
</Card>
</Card> */}
</AppMargin>
);
};
Expand Down

0 comments on commit 482d587

Please sign in to comment.