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

Commit 710e8c3

Browse files
committed
Fix(cms): Remove lint-ignore
1 parent c1d94fb commit 710e8c3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

cms/src/seed.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable */
21
export async function createUserSeed(strapi, amountOfUsers: number){
32
for (let i = 0; i < amountOfUsers; i++) {
43
const user = {
@@ -16,5 +15,4 @@ export async function createUserSeed(strapi, amountOfUsers: number){
1615
};
1716
await strapi.entityService.create("plugin::users-permissions.user", {data: user});
1817
}
19-
}
20-
/* eslint-enable */
18+
}

0 commit comments

Comments
 (0)