Skip to content

Commit 3c48cad

Browse files
committed
fix(commit): remove unused params
No more // eslint-disable-next-line no-unused-vars
1 parent 867e45a commit 3c48cad

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/repository/repository.action.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,8 +235,7 @@ export const getCommitDiffFromUrl = url => {
235235
};
236236

237237
export const getCommitDetails = commit => {
238-
// eslint-disable-next-line no-unused-vars
239-
return (dispatch, getState) => {
238+
return dispatch => {
240239
const url = commit.url || commit.commit.url;
241240

242241
dispatch(getCommitFromUrl(url));

0 commit comments

Comments
 (0)