We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87fdb75 commit 4450db5Copy full SHA for 4450db5
src/lib/components/v2/workflow/RunWorkflowModal.svelte
@@ -251,9 +251,12 @@
251
*/
252
async function preSubmissionCheck(params) {
253
preSubmissionCheckResults = [];
254
+ const headers = new Headers();
255
+ headers.set('Content-Type', 'application/json');
256
const response = await fetch(
257
`/api/v2/project/${workflow.project_id}/dataset/${selectedDatasetId}/images/verify-unique-types`,
258
{
259
+ headers,
260
method: 'POST',
261
credentials: 'include',
262
body: JSON.stringify(params)
0 commit comments