Skip to content

Commit

Permalink
Merge pull request #220 from tloncorp/hm/hide-garden
Browse files Browse the repository at this point in the history
sys-prefs: hide garden
  • Loading branch information
patosullivan authored Sep 26, 2023
2 parents 183c67b + 75f2536 commit 653224b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/preferences/SystemPreferences.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export const SystemPreferences = () => {
const { systemBlocked } = useSystemUpdate();
const charges = useCharges();
const filteredCharges = Object.values(charges).filter(
(charge) => charge.desk !== 'landscape'
(charge) => charge.desk !== 'landscape' && charge.desk !== 'garden'
);
const isMobile = useMedia('(max-width: 639px)');

Expand Down

0 comments on commit 653224b

Please sign in to comment.