This commit is contained in:
daniel31x13
2024-08-14 17:26:40 -04:00
4 changed files with 13 additions and 4 deletions
@@ -63,7 +63,8 @@ async function processBookmarks(
) as Element;
if (collectionName) {
const collectionNameContent = (collectionName.children[0] as TextNode)?.content;
const collectionNameContent = (collectionName.children[0] as TextNode)
?.content;
if (collectionNameContent) {
collectionId = await createCollection(
userId,
@@ -274,4 +275,3 @@ function processNodes(nodes: Node[]) {
nodes.forEach(findAndProcessDL);
return nodes;
}
+3
View File
@@ -9,6 +9,9 @@ const getPublicCollectionData = async (
) => {
const res = await fetch("/api/v1/public/collections/" + collectionId);
if (res.status === 400)
return { response: "Collection not found.", status: 400 };
const data = await res.json();
setData(data.response);