From 265eedac60ed172e153ec4f51c8a090f37e5fc49 Mon Sep 17 00:00:00 2001 From: Ben Date: Mon, 24 Jul 2023 12:44:00 +0000 Subject: [PATCH] fix: hide experiment CTA from OIDC copy --- coderd/userauth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coderd/userauth.go b/coderd/userauth.go index 6a1aead1ef8cb..f5eabc29e36c1 100644 --- a/coderd/userauth.go +++ b/coderd/userauth.go @@ -1521,7 +1521,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,