style: prettier fix for empty-body methods in custom-module-manager

This commit is contained in:
Brian Madison 2026-04-27 20:47:03 -05:00
parent 9fe649c357
commit 118a5f32a7
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ class CustomModuleManager {
const createSpinner = async () => {
if (silent) {
return { start() { }, stop() { }, error() { } };
return { start() {}, stop() {}, error() {} };
}
return await prompts.spinner();
};