refactor(blogs): curated filter type

This commit is contained in:
enes 2024-11-06 13:15:30 +01:00
parent c81b2c0a1d
commit 31ee0221b7
2 changed files with 8 additions and 4 deletions

View File

@ -13,10 +13,13 @@ import { scrollIntoView } from 'utils'
export const BlogsPage = () => {
const blogs = useLoaderData() as Partial<BlogCardDetails>[] | undefined
const [filterOptions, setFilterOptions] = useLocalStorage('filter-blog', {
sort: SortBy.Latest,
nsfw: NSFWFilter.Hide_NSFW
})
const [filterOptions, setFilterOptions] = useLocalStorage(
'filter-blog-curated',
{
sort: SortBy.Latest,
nsfw: NSFWFilter.Hide_NSFW
}
)
// Search
const searchTermRef = useRef<HTMLInputElement>(null)

View File

@ -5,3 +5,4 @@ export * from './utils'
export * from './zap'
export * from './localStorage'
export * from './consts'
export * from './blog'