From 8a3bfbd074284e33ad594bf6e6cca1b7e1191950 Mon Sep 17 00:00:00 2001 From: Patrick O'Sullivan Date: Tue, 26 Sep 2023 10:55:58 -0500 Subject: [PATCH] Check if landscape is blocked before allowing suspend and update --- ui/src/preferences/about-system/AboutSystem.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/preferences/about-system/AboutSystem.tsx b/ui/src/preferences/about-system/AboutSystem.tsx index 106cad8d..1eded621 100644 --- a/ui/src/preferences/about-system/AboutSystem.tsx +++ b/ui/src/preferences/about-system/AboutSystem.tsx @@ -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();