Skip to content

Commit

Permalink
Filter out old Groups (id: landscape)
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbroman committed Jul 28, 2023
1 parent fe02a77 commit aa0811a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ const AppGridPresenter = ({ maxWidth }: AppGridProps) => {
const currentSpace = spacesStore.selected;
const apps = useMemo(
() =>
[
...bazaarStore.installed,
// ...bazaarStore.devApps
] as AppMobxType[],
// Filter out old Groups.
bazaarStore.installed.filter(
(app) => app.id !== 'landscape'
) as AppMobxType[],
[bazaarStore.catalog, bazaarStore.installations.values()]
);
const [items, setItems] = useState(apps);
Expand Down

0 comments on commit aa0811a

Please sign in to comment.