From 19f95f34848eac1ae65a6f615367f629b2dbc2b9 Mon Sep 17 00:00:00 2001 From: Rita Zerrizuela Date: Fri, 2 Apr 2021 14:58:14 -0300 Subject: [PATCH] Fix duplicated hint copy (#226) --- README.md | 2 +- internal/display/apps.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ee2a51802..f4d349517 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ Creating application... done CLIENT SECRET QXV0aDAgaXMgaGlyaW5nISBhdXRoMC5jb20vY2FyZWVycyAK ▸ Quickstarts: https://auth0.com/docs/quickstart/webapp - ▸ Hint: You might wanna try `auth0 test login --client-id vXAtoaFdhlmtWjpIrjb9AUnrGEAOH2MM` + ▸ Hint: You might wanna try 'auth0 test login --client-id vXAtoaFdhlmtWjpIrjb9AUnrGEAOH2MM' ``` As you might observe, the next thing to do would likely be to try logging in diff --git a/internal/display/apps.go b/internal/display/apps.go index 088ee4404..8c375e3e1 100644 --- a/internal/display/apps.go +++ b/internal/display/apps.go @@ -234,7 +234,7 @@ func (r *Renderer) ApplicationCreate(client *management.Client, revealSecrets bo r.Infof("Quickstarts: %s", quickstartsURIFor(client.AppType)) // TODO(cyx): possibly guard this with a --no-hint flag. - r.Infof("%s You might wanna try 'auth0 test login --client-id %s'", + r.Infof("%s Test this app's login box with 'auth0 test login --client-id %s'", ansi.Faint("Hint:"), client.GetClientID(), )