From 72165fe0b2355d3eea7ae6a80c5262909f0192a6 Mon Sep 17 00:00:00 2001 From: yoution Date: Tue, 16 Nov 2021 19:18:28 +0800 Subject: [PATCH] fix: issue #106 --- src/containers/Challenges/Listing/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/Challenges/Listing/index.jsx b/src/containers/Challenges/Listing/index.jsx index 17a0ec5..b5ee5ad 100644 --- a/src/containers/Challenges/Listing/index.jsx +++ b/src/containers/Challenges/Listing/index.jsx @@ -50,7 +50,7 @@ const Listing = ({ size="xs" onChange={(value) => { onSearch.current(() => { - const filterChange = { search: value }; + const filterChange = { search: value, page: 1 }; updateFilter(filterChange); }); }}