Skip to content

Commit

Permalink
Check if landscape is blocked before allowing suspend and update
Browse files Browse the repository at this point in the history
  • Loading branch information
patosullivan committed Sep 26, 2023
1 parent 6ea9b1e commit 8a3bfbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/preferences/about-system/AboutSystem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const AboutSystem = () => {
const { systemBlocked, blockedCharges, blockedCount, freezeApps } =
useSystemUpdate();
const gardenBlocked =
null != blockedCharges.find((charge) => charge.desk == 'garden');
null != blockedCharges.find((charge) => charge.desk == 'landscape');
const hash = basePike && getHash(basePike);
const lag = useLag();

Expand Down

0 comments on commit 8a3bfbd

Please sign in to comment.