Skip to content

Commit

Permalink
fix: 🔨 field name change for job ID on job creation msg
Browse files Browse the repository at this point in the history
  • Loading branch information
marcodarko committed Aug 22, 2023
1 parent 3f7a0a1 commit 7b1054f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/CodeEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function CodeEditor(props) {
'description': payload.description
};
dispatch(addJob(job))
dispatch(setMessage(`A new job ID has been created: ${res.data.id} `))
dispatch(setMessage(`A new job ID has been created: ${res.data.job_id} `))
setTimeout(() => {
dispatch(setMessage(''))
}, 10000);
Expand Down

0 comments on commit 7b1054f

Please sign in to comment.