From ae11738ac7b96ad01ebcbd70c2bc88a8674b196e Mon Sep 17 00:00:00 2001 From: czlonkowski <56956555+czlonkowski@users.noreply.github.com> Date: Wed, 8 Oct 2025 11:56:45 +0200 Subject: [PATCH] fix: restore 'won't be used' phrase in validation warnings for clarity MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Restores the "won't be used" phrase in property visibility warnings to maintain compatibility with existing tests and improve user clarity. The message now reads: "Property 'X' won't be used - not visible with current settings" This preserves the intent of the validation while keeping the familiar phrasing that users and tests expect. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/services/config-validator.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/config-validator.ts b/src/services/config-validator.ts index 7249c43..166b10e 100644 --- a/src/services/config-validator.ts +++ b/src/services/config-validator.ts @@ -539,7 +539,7 @@ export class ConfigValidator { warnings.push({ type: 'inefficient', property: key, - message: `Property '${prop?.displayName || key}' is not visible with current settings`, + message: `Property '${prop?.displayName || key}' won't be used - not visible with current settings`, suggestion: visibilityReq || 'Remove this property or adjust other settings to make it visible' }); }