added prettier settings

This commit is contained in:
daniel31x13
2023-12-29 12:21:22 -05:00
parent e4fc8948fa
commit ee6dcdcc5b
21 changed files with 480 additions and 291 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ import { SetStateAction, useEffect } from "react";
type Props<
T extends
| CollectionIncludingMembersAndLinkCount
| LinkIncludingShortenedCollectionAndTags
| LinkIncludingShortenedCollectionAndTags,
> = {
sortBy: Sort;
@@ -19,7 +19,7 @@ type Props<
export default function useSort<
T extends
| CollectionIncludingMembersAndLinkCount
| LinkIncludingShortenedCollectionAndTags
| LinkIncludingShortenedCollectionAndTags,
>({ sortBy, data, setData }: Props<T>) {
useEffect(() => {
const dataArray = [...data];