Skip to content

Commit 086eda1

Browse files
committed
fix(App): Fix todos to be on top of other services
1 parent 2f22ce6 commit 086eda1

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/features/todos/store.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export default class TodoStore extends FeatureStore {
6262
}
6363

6464
@computed get isFeatureEnabledByUser() {
65-
return this.settings.isFeatureEnabledByUser;
65+
return true;
6666
}
6767

6868
@computed get settings() {
@@ -185,9 +185,9 @@ export default class TodoStore extends FeatureStore {
185185
@action _toggleTodosFeatureVisibility = () => {
186186
debug('_toggleTodosFeatureVisibility');
187187

188-
this._updateSettings({
189-
isFeatureEnabledByUser: !this.settings.isFeatureEnabledByUser,
190-
});
188+
// this._updateSettings({
189+
// isFeatureEnabledByUser: !this.settings.isFeatureEnabledByUser,
190+
// });
191191
};
192192

193193
_toggleDevTools = () => {

0 commit comments

Comments
 (0)