Skip to content

Commit

Permalink
[CLI-46] updated error message string format
Browse files Browse the repository at this point in the history
  • Loading branch information
bright-poku committed Mar 3, 2021
1 parent 30979ec commit eb8801a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cli/apps.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ auth0 apps show <id>
})

if err != nil {
return fmt.Errorf("Unable to load application. The ID %w specified doesn't exist", inputs.ID)
return fmt.Errorf("Unable to load application. The ID %v specified doesn't exist", inputs.ID)
}

revealClientSecret := auth0.StringValue(a.AppType) != "native" && auth0.StringValue(a.AppType) != "spa"
Expand Down

0 comments on commit eb8801a

Please sign in to comment.