Skip to content

Commit

Permalink
Remove hardcoded bazaar entry
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbroman committed Aug 3, 2023
1 parent 31e7b73 commit bb1f24f
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions app/src/renderer/system/desktop/components/Home/Ship/AppGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,10 @@ const AppGridPresenter = ({ maxWidth }: AppGridProps) => {
const currentSpace = spacesStore.selected;
const apps = useMemo(
() =>
[
// Filter out old Groups.
...bazaarStore.installed.filter((app) => app.id !== 'landscape'),
{
id: 'os-notes',
title: 'Notes',
info: 'A simple note-taking app.',
color: '#F5F5F5',
favicon: 'https://ship.holium.app/assets/icons/notes.svg',
type: 'native',
},
] 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 bb1f24f

Please sign in to comment.