From d5692e5bb7477effdbbd45576d35b0218da54bbb Mon Sep 17 00:00:00 2001 From: Brayan Ceron Date: Tue, 12 Nov 2024 15:56:36 -0500 Subject: [PATCH] fix: find proper courses when searching with active/archived filters on --- .../tabs-section/courses-tab/courses-filters/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/studio-home/tabs-section/courses-tab/courses-filters/index.jsx b/src/studio-home/tabs-section/courses-tab/courses-filters/index.jsx index 961b15c301..6f151b1674 100644 --- a/src/studio-home/tabs-section/courses-tab/courses-filters/index.jsx +++ b/src/studio-home/tabs-section/courses-tab/courses-filters/index.jsx @@ -95,7 +95,7 @@ const CoursesFilters = ({ const handleSearchCoursesDebounced = useCallback( debounce((value) => handleSearchCourses(value), 400), - [], + [activeOnly, archivedOnly], ); return (