fix(app): build script
Some checks failed
Deploy to GitHub Pages / build_site (push) Failing after 3m11s

This commit is contained in:
2024-04-24 03:12:13 +02:00
parent db54141b41
commit 2e726a65f8
6 changed files with 16 additions and 16 deletions

View File

@@ -8,7 +8,7 @@ export const entries: EntryGenerator = async () => {
const users = await registry.getUsers();
return users.map(user => {
return user.collections.map(collection => {
return { user: user.id, collection: collection.id }
return { user: user.id, collection: collection.id.split("/")[1] }
})
}).flat(2);
}