diff --git a/src/services/DhService.ts b/src/services/DhService.ts index 9e90c6b3..05ac10ab 100644 --- a/src/services/DhService.ts +++ b/src/services/DhService.ts @@ -288,9 +288,7 @@ export abstract class DhService ...result!.changes.updated, ] as VariableDefintion[]; - changed.forEach(variable => { - const { title = 'Unknown', type } = variable; - + changed.forEach(({ title = 'Unknown', type }) => { const icon = VARIABLE_UNICODE_ICONS[type] ?? type; this.outputChannel.appendLine(`${icon} ${title}`); });