Skip to content

Commit

Permalink
fix: apps.hidden flag
Browse files Browse the repository at this point in the history
  • Loading branch information
paultranvan committed Nov 21, 2024
1 parent ec8108b commit 048f201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/reducers/apps.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const fetchApps = () => async dispatch => {
const excludedApps = flag('apps.hidden') || []
const apps = rawAppList
.map(mapApp)
.filter(app => !excludedApps.includes(app))
.filter(app => !excludedApps.includes(app.slug))
if (!rawAppList.length)
throw new Error('No installed apps found by the bar')
// TODO load only one time icons
Expand Down

0 comments on commit 048f201

Please sign in to comment.