Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmweisz committed Dec 17, 2024
1 parent 54b351d commit 639455b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/routes/handlers.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,10 @@ export const samlLogin = function (template) {
});
}, Promise.resolve({}))
.then((loginViewModel) => {
loginViewModel.mhv_logon_enabled = !!req.sps?.options?.id_me?.mhvLogonEnabled;
loginViewModel.ds_logon_enabled = !!req.sps?.options?.id_me?.dsLogonEnabled;
loginViewModel.mhv_logon_enabled = !!req.sps?.options?.id_me
?.mhvLogonEnabled;
loginViewModel.ds_logon_enabled = !!req.sps?.options?.id_me
?.dsLogonEnabled;
loginViewModel.body = template;
loginViewModel.login_gov_enabled = login_gov_enabled;
loginViewModel.login_gov_signup_link_enabled =
Expand Down

0 comments on commit 639455b

Please sign in to comment.