From adbabe4e09b890fbf25691d3ce580b9389c34547 Mon Sep 17 00:00:00 2001 From: Ben Potter Date: Mon, 24 Jul 2023 14:51:28 -0500 Subject: [PATCH] fix: hide experiment CTA from OIDC copy (#8695) --- coderd/userauth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coderd/userauth.go b/coderd/userauth.go index c6ab387cf2..a53127ee91 100644 --- a/coderd/userauth.go +++ b/coderd/userauth.go @@ -1631,7 +1631,7 @@ func clearOAuthConvertCookie() *http.Cookie { func wrongLoginTypeHTTPError(user database.LoginType, params database.LoginType) httpError { addedMsg := "" if user == database.LoginTypePassword { - addedMsg = " You can convert your account to use this login type by visiting your account settings." + addedMsg = " Try logging in with your password." } return httpError{ code: http.StatusForbidden,