Skip to content

Commit 8e9b8e5

Browse files
committed
Fix duplicate triggerAutomation breaking app.js
1 parent 045a8de commit 8e9b8e5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

js/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -569,10 +569,10 @@ function scheduleInterview(applicationId) {
569569
.then(({ data }) => {
570570
if (data?.candidate?.email) document.getElementById('siEmail').value = data.candidate.email;
571571
if (data?.job_id) { const s = document.getElementById('siJob'); if (s) s.value = data.job_id; }
572-
}).catch(() => {});
573-
}
574572

575573
function triggerAutomation(event, id, data) {
574+
console.log('Automation:', event, id, data);
575+
}
576576

577577

578578

0 commit comments

Comments
 (0)