From 1730d354673803ece5981438c0f82471e05087d8 Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Wed, 9 Aug 2023 03:05:46 -0700 Subject: [PATCH] Revert "fix: hide experiment CTA from OIDC copy (#8695)" (#8825) 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 03ae7a6379..a61b6d126d 100644 --- a/coderd/userauth.go +++ b/coderd/userauth.go @@ -1673,7 +1673,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,