From 1a63ac69d897adc7dae46073fdca1f49bd36bb8c Mon Sep 17 00:00:00 2001 From: elforjani13 <39470382+elforjani13@users.noreply.github.com> Date: Wed, 10 Nov 2021 21:31:28 +0200 Subject: [PATCH] fix: rename sms messages. --- src/containers/Preferences/SMSIntegration/components.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/containers/Preferences/SMSIntegration/components.js b/src/containers/Preferences/SMSIntegration/components.js index d978edb25..7aeca2a4d 100644 --- a/src/containers/Preferences/SMSIntegration/components.js +++ b/src/containers/Preferences/SMSIntegration/components.js @@ -69,7 +69,7 @@ export function useSMSIntegrationTableColumns({ onSwitchChange }) { () => [ { id: 'notification', - Header: intl.get('sms_message.label_Notification'), + Header: intl.get('sms_messages.label_notification'), accessor: NotificationAccessor, className: 'notification', width: '180', @@ -83,7 +83,7 @@ export function useSMSIntegrationTableColumns({ onSwitchChange }) { disableSortBy: true, }, { - Header: intl.get('sms_message.label_mesage'), + Header: intl.get('sms_messages.label_mesage'), accessor: 'sms_message', Cell: SMSMessageCell, className: 'sms_message', @@ -92,7 +92,7 @@ export function useSMSIntegrationTableColumns({ onSwitchChange }) { disableSortBy: true, }, { - Header: intl.get('sms_message.label_auto'), + Header: intl.get('sms_messages.label_auto'), accessor: 'is_notification_enabled', Cell: SwitchFieldCell, className: 'is_notification_enabled',