Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions internal/webssoauth/webssoauth.go
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ func (w *WebSSOAuthentication) selectFedApp(apps []*okta.Application) (string, e
if err != nil {
return "", err
}
w.config.Logger.Warn(rich)
w.config.Logger.Warn(rich + "\n")
}

return app.ID, nil
Expand Down Expand Up @@ -487,7 +487,7 @@ func (w *WebSSOAuthentication) promptForRole(idp string, roleARNs []string) (rol
if err != nil {
return "", err
}
w.config.Logger.Warn(rich)
w.config.Logger.Warn(rich + "\n")
}
return roleARN, nil
}
Expand Down Expand Up @@ -548,7 +548,7 @@ func (w *WebSSOAuthentication) promptForIDP(idpARNs []string) (idpARN string, er
if err != nil {
return "", err
}
w.config.Logger.Warn(rich)
w.config.Logger.Warn(rich + "\n")
return idpARN, nil
}

Expand Down