+
All posts filtered out!
}
@@ -64,11 +63,7 @@ export default function PostSorting(props: PostSortingProps) {
{(post) => (
-
+
)}
diff --git a/src/components/blog/PostSortingSelect.tsx b/src/components/blog/PostSortingSelect.tsx
index a0481b2..e236f4d 100644
--- a/src/components/blog/PostSortingSelect.tsx
+++ b/src/components/blog/PostSortingSelect.tsx
@@ -11,9 +11,7 @@ const sorting = [
{ val: "Most Comments" }
];
-export interface PostSortingSelectProps {
- type: "blog" | "project";
-}
+export interface PostSortingSelectProps {}
export default function PostSortingSelect(props: PostSortingSelectProps) {
const [selected, setSelected] = createSignal(sorting[0]);
@@ -42,11 +40,7 @@ export default function PostSortingSelect(props: PostSortingSelectProps) {