Skip to content

Commit 482d587

Browse files
committed
Comment out matching form temporarily
1 parent 4446e92 commit 482d587

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

backend/question-service/src/controllers/questionController.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ export const createImageLink = async (
8080

8181
const uploadPromises = files.map((file) => uploadFileToFirebase(file));
8282
const imageUrls = await Promise.all(uploadPromises);
83+
console.log(imageUrls);
8384
res
8485
.status(200)
8586
.json({ message: "Images uploaded successfully", imageUrls });

frontend/src/pages/Home/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const Home: React.FC = () => {
7979
objectFit: "contain",
8080
}}
8181
/> */}
82-
<Card
82+
{/* <Card
8383
sx={{
8484
padding: 4,
8585
width: "100%",
@@ -269,7 +269,7 @@ const Home: React.FC = () => {
269269
>
270270
Find my match!
271271
</Button>
272-
</Card>
272+
</Card> */}
273273
</AppMargin>
274274
);
275275
};

0 commit comments

Comments
 (0)