Skip to content

Commit 1c0405f

Browse files
authored
Merge pull request #2 from ShasankKasi/stage
Stage
2 parents 43d7000 + 4188066 commit 1c0405f

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

backend/models/Question.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ const questionSchema = new mongoose.Schema(
1515
enum: ["Easy", "Medium", "Hard"],
1616
required: true
1717
},
18-
"Input Format": { type: String, required: true }, // ✅ space in key
19-
"Output Format": { type: String, required: true } // ✅ space in key
18+
"Input Format": { type: String, required: true },
19+
"Output Format": { type: String, required: true }
2020
},
2121
{ timestamps: true }
2222
);

frontend/src/App.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ export default function App() {
5959
</Routes>
6060
</Router>
6161

62-
{/* Global toaster */}
6362
<Toaster
6463
position="top-center"
6564
gutter={12}

0 commit comments

Comments
 (0)