From 2d3a6ad33f5190cdf0dd61e80a64fafe13803147 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Tue, 20 May 2025 14:24:25 +0200 Subject: [PATCH] [Astal] Remove debug code --- .../components/QuickActions/modules/Brightness/Brightness.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/config/astal/components/QuickActions/modules/Brightness/Brightness.tsx b/config/astal/components/QuickActions/modules/Brightness/Brightness.tsx index fa5f501..4f1b01a 100644 --- a/config/astal/components/QuickActions/modules/Brightness/Brightness.tsx +++ b/config/astal/components/QuickActions/modules/Brightness/Brightness.tsx @@ -4,7 +4,6 @@ import Brightness from "../../../../util/brightness"; const brightness = Brightness.get_default(); const BrightnessModule = () => { - print( brightness.screen * 100 ); const setBrightness = (value: number) => { brightness.screen = value; }