diff --git a/apps/common/mobile/lib/controller/SharingSettings.jsx b/apps/common/mobile/lib/controller/SharingSettings.jsx deleted file mode 100644 index fc9bc048f..000000000 --- a/apps/common/mobile/lib/controller/SharingSettings.jsx +++ /dev/null @@ -1,18 +0,0 @@ -import React, { Component } from 'react' -import {observer, inject} from "mobx-react" -import { withTranslation } from 'react-i18next'; -import SharingSettings from '../view/SharingSettings'; - -class SharingSettingsController extends Component { - constructor(props){ - super(props); - } - - render() { - return ( - - ) - } -} - -export default SharingSettingsController; \ No newline at end of file diff --git a/apps/documenteditor/mobile/src/view/settings/Settings.jsx b/apps/documenteditor/mobile/src/view/settings/Settings.jsx index 0b2ec8bbe..9129b0086 100644 --- a/apps/documenteditor/mobile/src/view/settings/Settings.jsx +++ b/apps/documenteditor/mobile/src/view/settings/Settings.jsx @@ -13,7 +13,7 @@ import { DocumentFormats, DocumentMargins, DocumentColorSchemes } from "./Docume import { MacrosSettings, Direction } from "./ApplicationSettings"; import About from '../../../../../common/mobile/lib/view/About'; import NavigationController from '../../controller/settings/Navigation'; -import SharingSettingsController from "../../../../../common/mobile/lib/controller/SharingSettings"; +import SharingSettings from "../../../../../common/mobile/lib/view/SharingSettings"; const routes = [ { @@ -75,7 +75,7 @@ const routes = [ { path: '/sharing-settings/', - component: SharingSettingsController + component: SharingSettings } ]; diff --git a/apps/presentationeditor/mobile/src/view/settings/Settings.jsx b/apps/presentationeditor/mobile/src/view/settings/Settings.jsx index b42dad38d..2f2615383 100644 --- a/apps/presentationeditor/mobile/src/view/settings/Settings.jsx +++ b/apps/presentationeditor/mobile/src/view/settings/Settings.jsx @@ -12,7 +12,7 @@ import PresentationSettingsController from "../../controller/settings/Presentati import { PresentationColorSchemes } from "./PresentationSettings"; // import PresentationAboutController from '../../controller/settings/PresentationAbout'; import About from '../../../../../common/mobile/lib/view/About'; -import SharingSettingsController from "../../../../../common/mobile/lib/controller/SharingSettings"; +import SharingSettings from "../../../../../common/mobile/lib/view/SharingSettings"; const routes = [ { @@ -52,7 +52,7 @@ const routes = [ { path: '/sharing-settings/', - component: SharingSettingsController + component: SharingSettings } /*{ path: '/presentation-settings/', diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx index cbf2d3394..ea36d7edd 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx @@ -13,7 +13,7 @@ import {MacrosSettings, RegionalSettings, FormulaLanguage} from './ApplicationSe // import SpreadsheetAbout from './SpreadsheetAbout.jsx'; import About from '../../../../../common/mobile/lib/view/About'; import { Direction } from '../../../../../spreadsheeteditor/mobile/src/view/settings/ApplicationSettings'; -import SharingSettingsController from "../../../../../common/mobile/lib/controller/SharingSettings"; +import SharingSettings from "../../../../../common/mobile/lib/view/SharingSettings"; const routes = [ { @@ -73,7 +73,7 @@ const routes = [ { path: '/sharing-settings/', - component: SharingSettingsController + component: SharingSettings } ];