Skip to content

Commit 2e9b2a1

Browse files
committed
chore: npm run format
Jira: IAM-1761
1 parent 68fe7d4 commit 2e9b2a1

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
@@ -156,7 +156,9 @@ exports.onExecutePostLogin = async (event, api) => {
156156
);
157157
} catch (err) {
158158
console.err(`Could not look up email for ${event.user.email}`);
159-
return api.access.deny("Please contact support or the IAM team. (err=link-lookup)");
159+
return api.access.deny(
160+
"Please contact support or the IAM team. (err=link-lookup)"
161+
);
160162
}
161163

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

0 commit comments

Comments
 (0)