Skip to content

Commit a99371b

Browse files
committed
fix(Settings): Don't toggle Todos on general settings changes
1 parent d3e3804 commit a99371b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/containers/settings/EditSettingsScreen.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export default @inject('stores', 'actions') @observer class EditSettingsScreen e
118118
},
119119
});
120120

121-
if (todos.isFeatureActive) {
121+
if (todos.isFeatureActive && todos.settings.isFeatureEnabledByUser !== settingsData.enableTodos) {
122122
todosActions.toggleTodosFeatureVisibility();
123123
}
124124
}

0 commit comments

Comments
 (0)