From b3c0c0589e8d220b29a45a0dc55a18070989d561 Mon Sep 17 00:00:00 2001 From: Bruno Sarlo Date: Fri, 12 Dec 2025 06:48:14 -0300 Subject: [PATCH] fix: Use correct field name 'classification' instead of 'atomic_type' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Component model uses 'classification' field for AtomicType enum 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- scripts/figma-sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/figma-sync.py b/scripts/figma-sync.py index b16a634..bf35047 100755 --- a/scripts/figma-sync.py +++ b/scripts/figma-sync.py @@ -128,7 +128,7 @@ async def main(): "components": [ { "name": c.name, - "atomic_type": c.atomic_type.value if hasattr(c.atomic_type, 'value') else str(c.atomic_type), + "classification": c.classification.value if hasattr(c.classification, 'value') else str(c.classification), "variant_count": len(c.variants) if c.variants else 0, } for c in components