Skip to content

Commit 25d10e1

Browse files
committed
Tiny aesthetic changes
1 parent 891bcb4 commit 25d10e1

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

frontend/src/pages/RecruiterApplicants.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,6 @@ const RecruiterApplicantsPage = () => {
269269
<Table>
270270
<UserListHead
271271
order="asc"
272-
orderBy="name"
273272
headLabel={[
274273
{ id: "name", label: "Name", alignRight: false },
275274
{ id: "role", label: "Role", alignRight: false },

frontend/src/pages/RecruiterHome.jsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ function RecruiterHome() {
129129
<Box sx={{ flexGrow: 1, marginTop: "20px" }}>
130130
<Grid container spacing={2}>
131131
{jobs.map((job) => (
132-
<Grid item xs={12} md={6} key={job.id}>
132+
<Grid item xs={12} md={12} key={job.id}>
133133
<Card className="jobContainer">
134134
<CardContent className="CardContent">
135135
<Typography
@@ -212,9 +212,6 @@ function RecruiterHome() {
212212
)}
213213
<RecruiterApplicantsPage jobId={selectedJobId} />
214214

215-
<br />
216-
<br />
217-
218215
{showCreateJobModal && (
219216
<CreateJobModal
220217
open={showCreateJobModal}

0 commit comments

Comments
 (0)