aboutsummaryrefslogtreecommitdiffstats
path: root/src/containers
diff options
context:
space:
mode:
authorLibravatar kytwb <kytwb@pm.me>2022-01-01 23:25:02 +0100
committerLibravatar kytwb <kytwb@pm.me>2022-01-01 23:25:02 +0100
commit4c5126a6fd2f1c048936ad64f4f4bb24c1aa2a9b (patch)
tree866c44aa663855d789e3ce2e5598ea61bf5ded02 /src/containers
parent#329 Remove blocking listener before autoUpdater.quitAndInstall (diff)
downloadferdium-app-4c5126a6fd2f1c048936ad64f4f4bb24c1aa2a9b.tar.gz
ferdium-app-4c5126a6fd2f1c048936ad64f4f4bb24c1aa2a9b.tar.zst
ferdium-app-4c5126a6fd2f1c048936ad64f4f4bb24c1aa2a9b.zip
Revert "Removed 'Most Popular' services since it alludes to user-tracking (#1718)"
This reverts commit 1c1b3e1f1a30745dd95db4172483821306fce4bc. # Conflicts: # src/i18n/locales/defaultMessages.json # src/i18n/locales/fa.json # src/i18n/locales/fi.json # src/i18n/locales/fr.json # src/i18n/locales/hi.json # src/i18n/locales/it.json # src/i18n/locales/nb.json # src/i18n/locales/pt-BR.json # src/i18n/locales/ru.json # src/i18n/locales/si.json # src/i18n/locales/sk.json # src/i18n/locales/sv.json # src/i18n/locales/te.json # src/i18n/locales/tr.json # src/i18n/locales/uk.json # src/i18n/locales/vi.json # src/i18n/locales/zh.json # src/i18n/messages/src/components/settings/recipes/RecipesDashboard.json
Diffstat (limited to 'src/containers')
-rw-r--r--src/containers/settings/RecipesScreen.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/containers/settings/RecipesScreen.js b/src/containers/settings/RecipesScreen.js
index 6b629d3d8..b81336c12 100644
--- a/src/containers/settings/RecipesScreen.js
+++ b/src/containers/settings/RecipesScreen.js
@@ -49,7 +49,7 @@ class RecipesScreen extends Component {
49 49
50 componentDidMount() { 50 componentDidMount() {
51 this.autorunDisposer = autorun(() => { 51 this.autorunDisposer = autorun(() => {
52 const { filter } = { filter: 'all', ...this.props.params }; 52 const { filter } = this.props.params;
53 const { currentFilter } = this.state; 53 const { currentFilter } = this.state;
54 54
55 if (filter === 'all' && currentFilter !== 'all') { 55 if (filter === 'all' && currentFilter !== 'all') {