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

Commit e54cf80

Browse files
committed
fix(cms): Fix new linting issues
1 parent 30565f7 commit e54cf80

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

cms/src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,16 +32,16 @@ export default {
3232
role: 1,
3333
old_pw_hash: null,
3434
migrated_pw: false,
35-
};
36-
await strapi.entityService.create("plugin::users-permissions.user", {data: user});
37-
}
35+
};
36+
await strapi.entityService.create("plugin::users-permissions.user", { data: user });
37+
}
3838
console.log("SUCCESS: Created user on bootstrap");
3939
} else {
4040
console.log("INFO: User have already been created on bootstrap");
4141
}
4242
} catch (err) {
4343
console.log("ERROR: Could not create user on bootstrap");
44-
console.log(err)
44+
console.log(err);
4545
}
4646
},
4747
};

0 commit comments

Comments
 (0)