Merge pull request #220 from tloncorp/hm/hide-garden

sys-prefs: hide garden
This commit is contained in:
Patrick O'Sullivan 2023-09-26 11:29:54 -05:00 committed by GitHub
commit 653224b954
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)');