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

Sprint 48 into main #558

Merged
merged 2 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
prettier
  • Loading branch information
SamDudley committed Dec 9, 2024
commit 89293b9d686f1589582d247a67e168f08b01bb81
2 changes: 1 addition & 1 deletion front_end/src/Components/EditPayroll/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function getVacancyData() {
export function postVacancyData(vacancyData) {
return postData(
getPayrollApiUrl() + "vacancies/",
JSON.stringify(vacancyData)
JSON.stringify(vacancyData),
);
}

Expand Down
2 changes: 1 addition & 1 deletion front_end/src/Components/EditPayroll/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ export const vacancyHeaders = [
"Hiring Manager",
"HR Ref",
"Recruitment Stage",
].concat(monthHeaders);
].concat(monthHeaders);
Loading