From d0af20dcab909592d181a2c9f9c9b855b4281fe1 Mon Sep 17 00:00:00 2001 From: Ben Date: Tue, 1 Aug 2023 04:42:57 +0000 Subject: [PATCH] Revert "fix: hide experiment CTA from OIDC copy (#8695)" This reverts commit adbabe4e09b890fbf25691d3ce580b9389c34547. --- coderd/userauth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coderd/userauth.go b/coderd/userauth.go index dea87821a3444..1aca55a8fcfd3 100644 --- a/coderd/userauth.go +++ b/coderd/userauth.go @@ -1618,7 +1618,7 @@ func clearOAuthConvertCookie() *http.Cookie { func wrongLoginTypeHTTPError(user database.LoginType, params database.LoginType) httpError { addedMsg := "" if user == database.LoginTypePassword { - addedMsg = " Try logging in with your password." + addedMsg = " You can convert your account to use this login type by visiting your account settings." } return httpError{ code: http.StatusForbidden,