added ability to prepend paths to smart breadcrumb

This commit is contained in:
Carter 2025-01-07 14:02:39 -06:00
parent 2d98917322
commit 77fb5a6bcf
5 changed files with 49 additions and 25 deletions

View file

@ -40,8 +40,8 @@ export default function GroupsPage() {
const navigate = useNavigate()
const [limit, setLimit] = useState(10)
const [page, setPage] = useState(0)
const [order, setOrder] = useState<"asc" | "desc">("asc")
const [orderBy, setOrderBy] = useState("")
const [order, ] = useState<"asc" | "desc">("asc")
const [orderBy, ] = useState("")
const [search, setSearch] = useState("")
const [total, setTotal] = useState(0)
const [loading, setLoading] = useState(false)