Fixed remaning linting issues

This commit is contained in:
Luke Vella 2024-10-13 17:24:24 +01:00
parent a13df41bae
commit b7765013ca
No known key found for this signature in database
GPG key ID: 469CAD687F0D784C
33 changed files with 140 additions and 1495 deletions

View file

@ -160,9 +160,9 @@ async function main() {
await Promise.all(
[freeUser, proUser, proUserLegacy].map(async (user) => {
Array.from({ length: 20 }).forEach(async () => {
for (let i = 0; i < 20; i++) {
await createPollForUser(user.id);
});
}
console.info(`✓ Added ${user.email}`);
}),
);