Skip to content

Commit

Permalink
Fix - SubmitInterface (#301)
Browse files Browse the repository at this point in the history
* Fix submitInterface use the correct variable

* remove commas added by pre-commit
  • Loading branch information
shincap8 authored Sep 5, 2024
1 parent bf2cfdf commit 47985c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontends/web/src/containers/SubmitInterface.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const SubmitInterface = (props) => {
}

setState((prevState) => ({ ...prevState, taskId: params.taskId }));
!setSendCallDatasets && params.taskId && handleGetTask(params.taskId);
!sendCallDatasets && params.taskId && handleGetTask(params.taskId);
};

fetchData();
Expand Down

0 comments on commit 47985c4

Please sign in to comment.