Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

corrected jobsite spelling #69

Merged
merged 6 commits into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/components/ui/checkboxGroup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ function Checkbox({ name, checked, onChange }) {
function CheckboxGroup({ formData, handleChange }) {
const siteNames = [
'Indigenous',
'New Comers',
'People with Disabilities',
'Students',
'Asylum-Refugess',
'Newcomers',
'Persons with Disabilities',
'Vulnerable Youth',
'Asylum-Refugees',
];
const siteKeys = Object.keys(formData).filter(key => key.startsWith('site'));

Expand Down
6 changes: 3 additions & 3 deletions src/components/ui/footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ function Footer() {
</div>
<div className="grid gap-1">
<h3 className="font-semibold">Job Sites</h3>
<Link href="/jobsite1">Indigenous</Link>
<Link href="/jobsite2">New Comers</Link>
<Link href="/wip">People with Disabilities</Link>
<Link href="/jobsite1">Indigenous People</Link>
<Link href="/jobsite2">Newcomers</Link>
<Link href="/wip">Persons with Disabilities</Link>
<Link href="/wip">Vulnerable Youth</Link>
<Link href="/wip">Asylum-Refugees</Link>
</div>
Expand Down
Loading