AUR0171
Error Message
Description
Example Trigger
<!-- ❌ Malformed optional chain -->
<div textcontent.bind="user?."></div>Solution
<!-- ✅ -->
<div textcontent.bind="user?.name"></div>Last updated
Was this helpful?