fix inadverdently added extra notification toggle from conflicts

This commit is contained in:
John Mitchell 2019-05-16 13:32:40 -04:00
parent 0f02daa64d
commit b45f3f6cab

View File

@ -92,18 +92,6 @@ function NotificationListItem (props) {
</DataListCell>
]}
/>
<Switch
id={`notification-${notification.id}-error-toggle`}
label={i18n._(t`Failure`)}
isChecked={errorTurnedOn}
isDisabled={!canToggleNotifications}
onChange={() => toggleNotification(
notification.id,
errorTurnedOn,
'error'
)}
aria-label={i18n._(t`Toggle notification failure`)}
/>
</DataListItemRow>
</DataListItem>
);