bug fix + use id instead of username for lookup

This commit is contained in:
Daniel
2023-07-19 12:14:52 -04:00
parent 01a8579158
commit 35bece5f49
13 changed files with 24 additions and 29 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ export default function useInitialData() {
setCollections();
setTags();
// setLinks();
setAccount(data.user.username as string);
setAccount(data.user.id);
}
}, [status]);
}