From 861fa78258f354c066d500ddac5b59710b708a1f Mon Sep 17 00:00:00 2001 From: vantezzen Date: Sat, 7 Sep 2019 18:18:24 +0200 Subject: Remove service restriction --- src/features/todos/components/TodosWebview.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/features/todos') diff --git a/src/features/todos/components/TodosWebview.js b/src/features/todos/components/TodosWebview.js index 530a5b2a9..7fe9d354b 100644 --- a/src/features/todos/components/TodosWebview.js +++ b/src/features/todos/components/TodosWebview.js @@ -11,7 +11,7 @@ import * as environment from '../../../environment'; import Appear from '../../../components/ui/effects/Appear'; import UpgradeButton from '../../../components/ui/UpgradeButton'; -import SettingsStore from '../../../stores/SettingsStore' +import SettingsStore from '../../../stores/SettingsStore'; const OPEN_TODOS_BUTTON_SIZE = 45; const CLOSE_TODOS_BUTTON_SIZE = 35; @@ -282,7 +282,7 @@ class TodosWebview extends Component { partition="persist:todos" preload="./features/todos/preload.js" ref={(webview) => { this.webview = webview ? webview.view : null; }} - src={ stores.settings.all.app.todoServer || environment.TODOS_FRONTEND} + src={stores.settings.all.app.todoServer || environment.TODOS_FRONTEND} /> ) : ( -- cgit v1.2.3-54-g00ecf