From 350a16f389a2bc6a5128db79e0a2284eec80444a Mon Sep 17 00:00:00 2001 From: Calin-Teodor Date: Thu, 23 Feb 2023 11:41:50 +0200 Subject: [PATCH] feat(calendar-sync): fixed linter --- .../calendar-sync/components/ConferenceNotification.native.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react/features/calendar-sync/components/ConferenceNotification.native.js b/react/features/calendar-sync/components/ConferenceNotification.native.js index e0028db12..b8350d7b5 100644 --- a/react/features/calendar-sync/components/ConferenceNotification.native.js +++ b/react/features/calendar-sync/components/ConferenceNotification.native.js @@ -7,7 +7,7 @@ import { getURLWithoutParamsNormalized } from '../../base/connection'; import { getLocalizedDateFormatter, translate } from '../../base/i18n'; import { connect } from '../../base/redux'; import { BUTTON_TYPES } from '../../base/ui/constants.native'; -import { NOTIFICATION_ICON, } from '../../notifications'; +import { NOTIFICATION_ICON } from '../../notifications'; import Notification from '../../notifications/components/native/Notification'; const ALERT_MILLISECONDS = 5 * 60 * 1000; @@ -184,7 +184,7 @@ class ConferenceNotification extends Component { clearInterval(this.updateIntervalId); this.setState({ event: !this.state.event - }) + }); } _onGoToNext: () => void;