From ecae47be3d525fc3aa328d098b88457d00c800e9 Mon Sep 17 00:00:00 2001 From: Yetkin Timocin Date: Thu, 18 Jan 2024 15:36:08 -0800 Subject: [PATCH] Updating delete confirmation message (#7049) # Description Ran into this message while testing something else. Updated the confirmation message of app deletion. Not sure if this should be the case. ## Type of change - This pull request is a minor refactor, code cleanup, test improvement, or other maintenance task and doesn't change the functionality of Radius (issue link optional). Fixes: #issue_number Signed-off-by: ytimocin --- pkg/cli/cmd/app/delete/delete.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cli/cmd/app/delete/delete.go b/pkg/cli/cmd/app/delete/delete.go index fe24fd169e..a271f5dbc1 100644 --- a/pkg/cli/cmd/app/delete/delete.go +++ b/pkg/cli/cmd/app/delete/delete.go @@ -33,7 +33,7 @@ import ( ) const ( - deleteConfirmation = "Are you sure you want to delete application '%v' from '%v'?" + deleteConfirmation = "Are you sure you want to delete application '%v' from environment '%v'?" bicepWarning = "'%v' is a Bicep filename or path and not the name of a Radius Application. Specify the name of a valid application and try again" )