From 625cc43ef96d093560899b4aab2f62ca0916a1db Mon Sep 17 00:00:00 2001 From: sellinjaanus <107852002+sellinjaanus@users.noreply.github.com> Date: Thu, 14 Jul 2022 07:07:25 +0000 Subject: [PATCH] Fixed naming (#1134) --- .../EnvironmentActionCell/EnvironmentActionCell.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/component/environments/EnvironmentTable/EnvironmentActionCell/EnvironmentActionCell.tsx b/frontend/src/component/environments/EnvironmentTable/EnvironmentActionCell/EnvironmentActionCell.tsx index 18709a2e99..2a2dab69b9 100644 --- a/frontend/src/component/environments/EnvironmentTable/EnvironmentActionCell/EnvironmentActionCell.tsx +++ b/frontend/src/component/environments/EnvironmentTable/EnvironmentActionCell/EnvironmentActionCell.tsx @@ -41,8 +41,8 @@ export const EnvironmentActionCell = ({ refetchPermissions(); setToastData({ type: 'success', - title: 'Project environment deleted', - text: 'You have successfully deleted the project environment.', + title: 'Environment deleted', + text: `You have successfully deleted the ${environment.name} environment.`, }); } catch (error: unknown) { setToastApiError(formatUnknownError(error));