From 118a5f32a7ab8b9801870b49ab591ddcd3f989ae Mon Sep 17 00:00:00 2001 From: Brian Madison Date: Mon, 27 Apr 2026 20:47:03 -0500 Subject: [PATCH] style: prettier fix for empty-body methods in custom-module-manager --- tools/installer/modules/custom-module-manager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/installer/modules/custom-module-manager.js b/tools/installer/modules/custom-module-manager.js index 92644a934..ca3e52325 100644 --- a/tools/installer/modules/custom-module-manager.js +++ b/tools/installer/modules/custom-module-manager.js @@ -336,7 +336,7 @@ class CustomModuleManager { const createSpinner = async () => { if (silent) { - return { start() { }, stop() { }, error() { } }; + return { start() {}, stop() {}, error() {} }; } return await prompts.spinner(); };