From c06af2c47c586cd2e088cc143e96d644a598702b Mon Sep 17 00:00:00 2001 From: Toshimichi0915 Date: Thu, 16 Jan 2025 01:27:29 +0900 Subject: [PATCH] Add another missing semicolon --- .config/ags/modules/overview/overview_hyprland.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/ags/modules/overview/overview_hyprland.js b/.config/ags/modules/overview/overview_hyprland.js index 362e9e610..0ce07d146 100644 --- a/.config/ags/modules/overview/overview_hyprland.js +++ b/.config/ags/modules/overview/overview_hyprland.js @@ -415,7 +415,7 @@ export default () => { }) .hook(App, (box, name, visible) => { // Update on open if (name == 'overview' && visible) { - overviewMonitor.value = Hyprland.active.monitor.id + overviewMonitor.value = Hyprland.active.monitor.id; box.attribute.update(box); } })