mirror of
https://github.com/tiennm99/ccs.git
synced 2026-07-16 14:16:43 +00:00
fix(config): remove unused forceReload parameter in showStatus
This commit is contained in:
@@ -104,9 +104,8 @@ function showHelp(): void {
|
||||
console.log('');
|
||||
}
|
||||
|
||||
function showStatus(forceReload = false): void {
|
||||
// Force reload if config was just modified
|
||||
const config = forceReload ? getImageAnalysisConfig() : getImageAnalysisConfig();
|
||||
function showStatus(): void {
|
||||
const config = getImageAnalysisConfig();
|
||||
|
||||
console.log('');
|
||||
console.log(header('Image Analysis Configuration'));
|
||||
@@ -212,6 +211,6 @@ export async function handleConfigImageAnalysisCommand(args: string[]): Promise<
|
||||
console.log('');
|
||||
}
|
||||
|
||||
// Always show current status (reload if we made changes)
|
||||
showStatus(hasChanges);
|
||||
// Always show current status
|
||||
showStatus();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user