Skip to content

Commit db9c952

Browse files
author
Vikas Agarwal
committed
Lint fix
1 parent b5d8ef3 commit db9c952

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/models/projectMemberInvite.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ module.exports = function defineProjectMemberInvite(sequelize, DataTypes) {
7070
if (email && userId) {
7171
_.assign(where, { $or: [
7272
{ email: { $eq: email.toLowerCase() } },
73-
{ userId: { $eq: userId } }
73+
{ userId: { $eq: userId } },
7474
] });
7575
} else if (email) {
7676
_.assign(where, { email });

0 commit comments

Comments
 (0)