feat(admin): fixed job listing

This commit is contained in:
Unchanted
2025-08-21 13:55:24 +05:30
parent 8ebf952f74
commit 8bfe681dd4
4 changed files with 67 additions and 27 deletions

View File

@@ -684,7 +684,7 @@ export default function ProfilePage() {
<SelectValue placeholder="Select branch" />
</SelectTrigger>
<SelectContent>
<SelectItem value="Computer Science">Computer Science</SelectItem>
<SelectItem value="Computer Engineering">Computer Engineering</SelectItem>
<SelectItem value="Information Technology">Information Technology</SelectItem>
<SelectItem value="Electronics & Communication">Electronics & Communication</SelectItem>
<SelectItem value="Mechanical Engineering">Mechanical Engineering</SelectItem>
@@ -1251,4 +1251,4 @@ export default function ProfilePage() {
</div>
</div>
)
}
}

View File

@@ -22,7 +22,7 @@ export default function AcademicDetailsStep({ form }: { form: any }) {
];
const branchOptions = [
{ value: 'cse', label: 'Computer Science' },
{ value: 'cse', label: 'Computer Engineering' },
{ value: 'it', label: 'Information Technology' },
{ value: 'ece', label: 'Electronics & Communication' },
{ value: 'mechanical', label: 'Mechanical' },