From b27fb0b079211b91b422af453d1c6896d8640027 Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Wed, 8 Oct 2025 00:03:02 -0400 Subject: [PATCH] fix: correct typo in command code --- modules/Commands.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Commands.qml b/modules/Commands.qml index 6d2f02a..1a41fdd 100644 --- a/modules/Commands.qml +++ b/modules/Commands.qml @@ -109,7 +109,7 @@ Scope { description: "Toggle launcher" onPressed: { const uiState = States.getForActive(); - uiState.laucher = !uiState.launcher; + uiState.launcher = !uiState.launcher; } }