Skip to content

Commit

Permalink
chore: fix eslint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandromumo committed Sep 3, 2024
1 parent 1eead8d commit 4536c1a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class PublishButtonComponent extends Component {
}

// All files must be finished uploading
const allCompleted = filesArray.every(file => file.status === "finished")
const allCompleted = filesArray.every((file) => file.status === "finished");

return !allCompleted;
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class SubmitReviewButtonComponent extends Component {
}

// All files must be finished uploading
const allCompleted = filesArray.every(file => file.status === "finished")
const allCompleted = filesArray.every((file) => file.status === "finished");

return !allCompleted;
};
Expand Down Expand Up @@ -138,7 +138,7 @@ SubmitReviewButtonComponent.defaultProps = {
disableSubmitForReviewButton: undefined,
publishModalExtraContent: undefined,
directPublish: false,
filesState: undefined
filesState: undefined,
};

const mapStateToProps = (state) => ({
Expand Down

0 comments on commit 4536c1a

Please sign in to comment.