diff --git a/internal/cli/universal_login_customize.go b/internal/cli/universal_login_customize.go index 533cb2be4..809386c2d 100644 --- a/internal/cli/universal_login_customize.go +++ b/internal/cli/universal_login_customize.go @@ -111,7 +111,7 @@ func ensureNewUniversalLoginExperienceIsActive(ctx context.Context, api *auth0.A return fmt.Errorf( "this feature requires the new Universal Login experience to be enabled for the tenant, " + - "use `auth0 api patch prompts --data '{\"universal_login_experience\":\"new\"}'` to have it enabled", + "use `auth0 api patch prompts --data '{\"universal_login_experience\":\"new\"}'` to enable it", ) } diff --git a/internal/cli/universal_login_customize_test.go b/internal/cli/universal_login_customize_test.go index 5c057b9d7..5c8fa9ce1 100644 --- a/internal/cli/universal_login_customize_test.go +++ b/internal/cli/universal_login_customize_test.go @@ -79,7 +79,7 @@ func TestEnsureNewUniversalLoginExperienceIsActive(t *testing.T) { Prompt: mockPromptAPI, } }, - expectedError: "this feature requires the new Universal Login experience to be enabled for the tenant, use `auth0 api patch prompts --data '{\"universal_login_experience\":\"new\"}'` to have it enabled", + expectedError: "this feature requires the new Universal Login experience to be enabled for the tenant, use `auth0 api patch prompts --data '{\"universal_login_experience\":\"new\"}'` to enable it", }, }