Skip to content

Commit d040e0a

Browse files
committed
address redux errors
1 parent 49eafd7 commit d040e0a

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

client/modules/IDE/actions/projects.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,14 +50,12 @@ const fetchProjects = (username, options, successType) => (dispatch) => {
5050
});
5151
};
5252

53-
export const getProjects = (username, options) => {
53+
export const getProjects = (username, options) =>
5454
fetchProjects(username, options, ActionTypes.SET_PROJECTS);
55-
};
5655

57-
export const getProjectsForCollectionList = (username, options) => {
56+
export const getProjectsForCollectionList = (username, options) =>
5857
fetchProjects(
5958
username,
6059
options,
6160
ActionTypes.SET_PROJECTS_FOR_COLLECTION_LIST
6261
);
63-
};

client/modules/IDE/components/SketchList.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ const SketchList = ({
118118
className="sketch-list__sort-button"
119119
onClick={() => {
120120
toggleDirectionForField(fieldName);
121-
setPage(1);
122121
}}
123122
aria-label={buttonLabel}
124123
>

0 commit comments

Comments
 (0)