Remove success message display for job and printer creation in NewJob and NewPrinter components to streamline user feedback during submission.
Some checks failed
farmcontrol/farmcontrol-ui/pipeline/head There was a failure building this commit

This commit is contained in:
Tom Butcher 2026-06-21 22:18:51 +01:00
parent 00cde6e8c5
commit 6d1c7cf6ca
2 changed files with 0 additions and 2 deletions

View File

@ -64,7 +64,6 @@ const NewJob = ({ onOk, defaultValues }) => {
onSubmit={async () => {
const result = await handleSubmit()
if (result) {
showSuccess('New job created successfully.')
onOk()
}
}}

View File

@ -99,7 +99,6 @@ const NewPrinter = ({ onOk, defaultValues }) => {
onSubmit={async () => {
const result = await handleSubmit()
if (result) {
showSuccess('New printer added successfully.')
onOk()
}
}}