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

Commit 14526a1

Browse files
committed
fix(cms): Linting issue regarding strapi type
1 parent 6eeb346 commit 14526a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cms/src/seed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable */
2-
export async function createUserSeed(strapi: { entityService: { create: (arg0: string, arg1: { data: { username: string; email: string; provider: string; password: string; resetPasswordToken: any; confirmationToken: any; confirmed: boolean; blocked: boolean; role: number; old_pw_hash: any; migrated_pw: boolean; }; }) => any; }; }, amountOfUsers: number){
2+
export async function createUserSeed(strapi, amountOfUsers: number){
33
console.log("Function called")
44
for (let i = 0; i < amountOfUsers; i++) {
55
const user = {

0 commit comments

Comments
 (0)