mirror of
https://github.com/placeholder-soft/web.git
synced 2026-04-28 10:55:27 +08:00
rename BD to Ecosystem (#831)
This commit is contained in:
committed by
GitHub
parent
507b7bc5cf
commit
13ef039b83
@@ -62,7 +62,11 @@ export default function JobsList() {
|
||||
<div className="flex flex-col">
|
||||
{departments.map((department, index) => (
|
||||
<div key={department.id}>
|
||||
<h2 className="text-xl font-bold">{department.name}</h2>
|
||||
<h2 className="text-xl font-bold">
|
||||
{department.name === 'Business Development & Partnerships'
|
||||
? 'Ecosystem'
|
||||
: department.name}
|
||||
</h2>
|
||||
<div className="flex flex-col">
|
||||
{department.jobs?.map((job) => (
|
||||
<Job key={job.id} job={job} />
|
||||
|
||||
Reference in New Issue
Block a user