Is there an existing issue for this?
Describe the bug
The blogs page filtering logic is inside src/pages/blogs/index.tsx directly updates state inside a useEffect, which can become difficult to maintain as filters grow.
Current pattern:
setFilteredBlogs(filtered);
Possible improvements:
Extract filtering into a reusable utility function
Use useMemo for the derived filtered state
Expected behavior
Improve readability and scalability for future search/filter features
Add ScreenShots
No response
What browsers are you seeing the problem on?
No response
Record
Is there an existing issue for this?
Describe the bug
The blogs page filtering logic is inside src/pages/blogs/index.tsx directly updates state inside a useEffect, which can become difficult to maintain as filters grow.
Current pattern:
setFilteredBlogs(filtered);
Possible improvements:
Extract filtering into a reusable utility function
Use useMemo for the derived filtered state
Expected behavior
Improve readability and scalability for future search/filter features
Add ScreenShots
No response
What browsers are you seeing the problem on?
No response
Record