add initialData to queries

This commit is contained in:
daniel31x13
2024-08-01 18:40:08 -04:00
parent 75b1ae738f
commit a73e5fa6c6
35 changed files with 46 additions and 39 deletions
+2 -2
View File
@@ -33,8 +33,8 @@ type Props = {
export default function LinkMasonry({ link, flipDropdown, editMode }: Props) {
const { t } = useTranslation();
const { data: collections = [] } = useCollections();
const { data: user = [] } = useUser();
const { data: collections } = useCollections();
const { data: user } = useUser();
const { links, getLink, setSelectedLinks, selectedLinks } = useLinkStore();