fix(app): build script
Some checks failed
Deploy to GitHub Pages / build_site (push) Failing after 3m11s
Some checks failed
Deploy to GitHub Pages / build_site (push) Failing after 3m11s
This commit is contained in:
@@ -9,7 +9,7 @@ export const entries: EntryGenerator = async () => {
|
||||
return users.map(user => {
|
||||
return user.collections.map(collection => {
|
||||
return collection.nodes.map(node => {
|
||||
return { user: user.id, collection: collection.id, node: node.id }
|
||||
return { user: user.id, collection: collection.id.split("/")[1], node: node.id.split("/")[2] }
|
||||
});
|
||||
})
|
||||
}).flat(2);
|
||||
|
||||
Reference in New Issue
Block a user