Skip to content

Commit 81c3f17

Browse files
committed
fix schema typo prefferd to preferred; rename label
1 parent 8edc30d commit 81c3f17

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/components/JobCard.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if (!sponsor) {
1515
}
1616
1717
// TODO: add tags
18-
const { title, location, type, level, salary, description, responsibilities, min_requirements, requirements, preffered, benefits, apply_link, draft } = job.data;
18+
const { title, location, type, level, salary, description, responsibilities, min_requirements, requirements, preferred, benefits, apply_link, draft } = job.data;
1919
2020
---
2121

@@ -52,10 +52,10 @@ const { title, location, type, level, salary, description, responsibilities, min
5252
</ul>
5353
}
5454

55-
{ preffered &&
56-
<h3 class="text-xl font-semibold mb-2">Preferred job requirements</h3>
55+
{ preferred &&
56+
<h3 class="text-xl font-semibold mb-2">Nice-to-Haves</h3>
5757
<ul class="list-disc list-inside mb-4">
58-
{preffered.map((item:string) => <li>{item}</li>)}
58+
{preferred.map((item:string) => <li>{item}</li>)}
5959
</ul>
6060
}
6161

src/content/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ const jobs = defineCollection({
255255
responsibilities: z.array(z.string()).nullable(),
256256
min_requirements: z.array(z.string()).optional().nullable(),
257257
requirements: z.array(z.string()).nullable(),
258-
preffered: z.array(z.string()).optional().nullable(),
258+
preferred: z.array(z.string()).optional().nullable(),
259259
stack: z.array(z.string()).optional().nullable(),
260260
benefits: z.array(z.string()).nullable(),
261261
description2: z.string().optional().nullable(),

src/content/sponsors/modal/1-python-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ requirements:
3636
- Ability to participate in on-call rotation and respond to production incidents.
3737
- Ability to work in-person in our NYC or Stockholm office.
3838

39-
preffered:
39+
preferred:
4040
- Familiarity with modern data / ML / AI tools and workflows
4141
- Experience with Typescript, Go, or Rust
4242

src/content/sponsors/modal/5-forward-deployed-engineer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ requirements:
4545
- Strong communicator who can go deep on technical architecture with an engineering team and clearly articulate tradeoffs to technical leadership
4646
- Genuine interest in working directly with customers — you find it energizing to understand someone else's problem and help them solve it
4747
- Willing to work in-person in Stockholm
48-
preffered:
48+
preferred:
4949
- side projects, open-source contributions, or published work you're proud of in ML or systems performance
5050

5151
apply_link: "https://jobs.ashbyhq.com/modal/0d9c249b-f305-4b0e-b325-3242ac7274e7"

0 commit comments

Comments
 (0)