Why does liquid-wormhole insert my component twice while animating? as a complete duplicate with same id?
Is this by design? because it is creating some side effects with my component during animation.
<div id="ember2737" class="liquid-destination default-liquid-destination has-wormholes ember-view">
<div class="liquid-destination-stack">
<div id="ember2741" class="liquid-child ember-view" style="visibility: hidden;">
<div id="ember2744" class="ember-view">
<div id="ember2454" class="test-transition-selector h-full w-full fixed liquid-wormhole-element" style="visibility: hidden;">
<div id="ember2454" class="test-transition-selector h-full w-full fixed liquid-wormhole-element velocity-animating" style="position: absolute; top: 0px; left: 0px; margin: 0px; transform: translateY(595.305px);">
....
</div> closing divs etc.
Usage
{{#if isViewer}}
{{#liquid-wormhole class="test-transition-selector h-full w-full fixed"}}
{{my-component}}
{{/liquid-wormhole}}
{{/if}}
Why does liquid-wormhole insert my component twice while animating? as a complete duplicate with same id?
Is this by design? because it is creating some side effects with my component during animation.
Usage