Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.

Commit c1d94fb

Browse files
committed
fix(cms): Remove linting
1 parent 14526a1 commit c1d94fb

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

cms/src/seed.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/* eslint-disable */
22
export async function createUserSeed(strapi, amountOfUsers: number){
3-
console.log("Function called")
43
for (let i = 0; i < amountOfUsers; i++) {
54
const user = {
65
username: `dummyUser${i}`,
@@ -17,5 +16,5 @@ export async function createUserSeed(strapi, amountOfUsers: number){
1716
};
1817
await strapi.entityService.create("plugin::users-permissions.user", {data: user});
1918
}
20-
21-
}
19+
}
20+
/* eslint-enable */

0 commit comments

Comments
 (0)