From c16e2192b8a8e1893c0000d7ea80a09c8e2eddf5 Mon Sep 17 00:00:00 2001 From: Chika Date: Tue, 29 Sep 2020 12:29:49 +0300 Subject: [PATCH] remove '!' --- src/client/stores/CalculationStore/Effects/action.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client/stores/CalculationStore/Effects/action.ts b/src/client/stores/CalculationStore/Effects/action.ts index 82294f4..be7890e 100644 --- a/src/client/stores/CalculationStore/Effects/action.ts +++ b/src/client/stores/CalculationStore/Effects/action.ts @@ -18,7 +18,7 @@ const actions: TAction = { openNotification({ type: 'error', title: 'Ошибка во время создания интереса', - description: 'Не указан контакт клиента!', + description: 'Не указан контакт клиента', })(); } if (!newClient && !account) { @@ -27,7 +27,7 @@ const actions: TAction = { openNotification({ type: 'error', title: 'Ошибка во время создания интереса', - description: 'Не указан клиент!', + description: 'Не указан клиент', })(); } if (!commentLead) { @@ -35,7 +35,7 @@ const actions: TAction = { openNotification({ type: 'error', title: 'Ошибка во время создания интереса', - description: 'Не указан комментарий к интересу!', + description: 'Не указан комментарий к интересу', })(); } if (contact && !phoneNumber) {