chore: add MemoFilters to explore sidebar

This commit is contained in:
Steven
2025-02-06 23:35:25 +08:00
parent 2ed3e34636
commit e09819da53

View File

@@ -3,6 +3,7 @@ import SearchBar from "@/components/SearchBar";
import { useUserStatsStore } from "@/store/v1";
import { cn } from "@/utils";
import TagsSection from "../HomeSidebar/TagsSection";
import MemoFilters from "../MemoFilters";
import StatisticsView from "../StatisticsView";
interface Props {
@@ -28,6 +29,7 @@ const ExploreSidebar = (props: Props) => {
)}
>
<SearchBar />
<MemoFilters />
<StatisticsView />
<TagsSection readonly={true} />
</aside>