### dynamic_void_element_content ``` `` is a void element — it cannot have content ``` ### state_snapshot_uncloneable ``` Value cannot be cloned with `$state.snapshot` — the original value was returned ``` ``` The following properties cannot be cloned with `$state.snapshot` — the return value contains the originals: %properties% ``` ### svelte_html_duplicate_attribute ``` Duplicate attribute '%name%' across multiple `` blocks, the latest value will be used. ``` This warning appears when you have multiple `` blocks across several files, and they set the same attribute. In that case, the latest value wins. On the server and on the client for static attributes, that's the last occurence of the attribute. On the client for dynamic attributes that's the value which was updated last across all `` blocks.