Skip to content

Commit

Permalink
Fix runApi.addRunFromData() invocation
Browse files Browse the repository at this point in the history
Removes redundant argument that used to be internal/test `token`.  The
parameter was removed in #2100
  • Loading branch information
zakkak authored and lampajr committed Dec 3, 2024
1 parent dfee4a0 commit 6bbb23c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions horreum-web/src/domain/runs/RunImportModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,9 @@ export const RunImportModal = (props: RunImportModalProps) => {
props.test?.name || "",
props.owner,
access,
undefined,
schemaUrn,
undefined,
JSON.parse(payloadData || "")
JSON.parse(payloadData || "")
)
, alerting, "UPLOAD_ERROR", "Failed to upload run data")
.then(noop)
Expand Down

0 comments on commit 6bbb23c

Please sign in to comment.