We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a0806a commit 0061506Copy full SHA for 0061506
frontend/src/app/components/SampleDialog.tsx
@@ -74,7 +74,7 @@ export default function SampleDialog({ sample, open, setOpen }: SampleDialogProp
74
if (result) {
75
setOpen(false)
76
} else {
77
- alert(`Unable to ${sample != null} ? "update" : "create"!}`)
+ alert(`Unable to ${sample ? "update" : "create"} sample, check console.`)
78
}
79
},
80
});
0 commit comments