remove for of with for await

This commit is contained in:
Maidul Islam
2024-05-15 20:19:10 -04:00
parent 74fe673724
commit 4a35623956
2 changed files with 1 additions and 2 deletions

View File

@@ -38,7 +38,6 @@ module.exports = {
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-unsafe-enum-comparison": "off",
"no-void": "off",
"no-await-in-loop": "off",
"consistent-return": "off", // my style
"import/order": "off", // for simple-import-order
"import/prefer-default-export": "off", // why

View File

@@ -136,7 +136,7 @@ export const identityProjectServiceFactory = ({
message: `Identity with id ${identityId} doesn't exists in project with id ${projectId}`
});
for (const { role: requestedRoleChange } of roles) {
for await (const { role: requestedRoleChange } of roles) {
const { permission: rolePermission } = await permissionService.getProjectPermissionByRole(
requestedRoleChange,
projectId