From f6e6b09e78f48bdbf8cf686abeb193e3f45a055b Mon Sep 17 00:00:00 2001 From: Bettenbuk Zoltan Date: Thu, 18 Oct 2018 10:31:38 +0200 Subject: [PATCH] [RN] Make feature dialogs branded: calendar-sync --- .../components/UpdateCalendarEventDialog.native.js | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/react/features/calendar-sync/components/UpdateCalendarEventDialog.native.js b/react/features/calendar-sync/components/UpdateCalendarEventDialog.native.js index 0b4497e19..a399836d1 100644 --- a/react/features/calendar-sync/components/UpdateCalendarEventDialog.native.js +++ b/react/features/calendar-sync/components/UpdateCalendarEventDialog.native.js @@ -3,7 +3,7 @@ import React, { Component } from 'react'; import { connect } from 'react-redux'; -import { Dialog, DialogContent } from '../../base/dialog'; +import { ConfirmDialog } from '../../base/dialog'; import { translate } from '../../base/i18n'; import { updateCalendarEvent } from '../actions'; @@ -49,15 +49,9 @@ class UpdateCalendarEventDialog extends Component { */ render() { return ( - - - { this.props.t('calendarSync.confirmAddLink') } - - + ); }