eb6c93fb55
Build and Deploy / build-and-push (push) Successful in 3m51s
ModalCard carries Transform (for its 0.96→1.0 scale entrance animation), which auto-inserts GlobalTransform. Bevy 0.18's on_insert hook on GlobalTransform fires B0004 when the child has GlobalTransform but the parent does not. ModalScrim had only Node (which gives InheritedVisibility via UiTransform but not GlobalTransform), so every modal spawn triggered the warning. Adding Transform::default() to ModalScrim gives it GlobalTransform and satisfies the hook. UI layout is unaffected because Bevy's layout pipeline reads UiTransform, not Transform. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>