aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/todos/containers/TodosScreen.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/todos/containers/TodosScreen.js')
-rw-r--r--src/features/todos/containers/TodosScreen.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/features/todos/containers/TodosScreen.js b/src/features/todos/containers/TodosScreen.js
index 631893f93..96147d5ab 100644
--- a/src/features/todos/containers/TodosScreen.js
+++ b/src/features/todos/containers/TodosScreen.js
@@ -28,7 +28,8 @@ class TodosScreen extends Component {
28 minWidth={TODOS_MIN_WIDTH} 28 minWidth={TODOS_MIN_WIDTH}
29 resize={width => todoActions.resize({ width })} 29 resize={width => todoActions.resize({ width })}
30 userAgent={todosStore.userAgent} 30 userAgent={todosStore.userAgent}
31 isTodosIncludedInCurrentPlan 31 todoUrl={todosStore.todoUrl}
32 isTodoUrlValid={todosStore.isTodoUrlValid}
32 /> 33 />
33 </ErrorBoundary> 34 </ErrorBoundary>
34 ); 35 );