Skip to content

Commit f5bfe7d

Browse files
authored
Merge branch 'challenges-bug-bash' into issue_143
2 parents 8c04497 + 69dd861 commit f5bfe7d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/containers/Challenges/Listing/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const Listing = ({
6060
size="xs"
6161
onChange={(value) => {
6262
onSearch.current(() => {
63-
const filterChange = { search: value };
63+
const filterChange = { search: value, page: 1 };
6464
updateFilter(filterChange);
6565
});
6666
}}

src/routers/challenge-list/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const App = () => {
4141
actions.challenges.getChallengesDone(currentFilter)
4242
);
4343
}
44-
44+
4545
return;
4646
}
4747

0 commit comments

Comments
 (0)