Skip to content

Commit 0eb74a3

Browse files
committed
chore: npm run format
Jira: IAM-1761
1 parent 9a6b3fc commit 0eb74a3

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

tf/actions/linkUserByEmail.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,9 @@ exports.onExecutePostLogin = async (event, api) => {
155155
);
156156
} catch (err) {
157157
console.err(`Could not look up email for ${event.user.email}`);
158-
return api.access.deny("Please contact support or the IAM team. (err=link-lookup)");
158+
return api.access.deny(
159+
"Please contact support or the IAM team. (err=link-lookup)"
160+
);
159161
}
160162

161163
// Ignore non-verified users
@@ -180,7 +182,9 @@ exports.onExecutePostLogin = async (event, api) => {
180182
console.error(
181183
`Could not link ${event.user.user_id} with ${candidateUserId}`
182184
);
183-
return api.access.deny("Please contact support or the IAM team. (err=link-link)");
185+
return api.access.deny(
186+
"Please contact support or the IAM team. (err=link-link)"
187+
);
184188
}
185189
}
186190

0 commit comments

Comments
 (0)