fix types

This commit is contained in:
Kalidou Diagne
2023-09-08 20:07:19 +01:00
parent bcd400c749
commit 46d3a05fcd

View File

@@ -5,7 +5,7 @@ import { create } from "zustand"
import { ProjectInterface } from "@/lib/types"
import { uniq } from "@/lib/utils"
export type ProjectSortBy = "random" | "asc" | "desc" | "relevancy"
export type ProjectSortBy = "random" | "asc" | "desc" | "relevance"
export type ProjectFilter = "keywords" | "builtWith" | "themes"
export type FiltersProps = Record<ProjectFilter, string[]>