Skip to content

Commit 4fa50e3

Browse files
committed
Reorder Quiz Subject In Form
Signed-off-by: Tal Jacob <taljacob2@gmail.com>
1 parent 7e5c2e2 commit 4fa50e3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

nextstep-frontend/src/pages/Quiz.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
Chip,
1717
Divider,
1818
Grid,
19-
Avatar, // <--- Ensure Avatar is imported
19+
Avatar,
2020
} from '@mui/material';
2121
import {
2222
Visibility,
@@ -230,11 +230,11 @@ const Quiz: React.FC = () => {
230230
{!quiz && (
231231
<Box sx={{ mb: 4, p: 3, bgcolor: 'background.paper', borderRadius: 2, boxShadow: 1 }}>
232232
<Typography variant="h6" gutterBottom>
233-
Enter a Quiz Subject
234233
</Typography>
235234
<TextField
236235
fullWidth
237-
label="e.g., Java Spring Boot Microservices, React Hooks, Quantum Physics"
236+
label="Quiz Subject"
237+
placeholder="e.g., Java Spring Boot Microservices, React Hooks, Quantum Physics"
238238
variant="outlined"
239239
value={subject}
240240
onChange={e => setSubject(e.target.value)}

0 commit comments

Comments
 (0)