Retrigger rocket-DOMContentLoaded or DOMContentLoaded after using facets

<?php
/** Trigger rocket-DOMContentLoaded or DOMContentLoaded after using facets
 ** Change 'rocket-DOMContentLoaded' to 'DOMContentLoaded' if you are not using WP Rocket lazy load
 **/

add_action('facetwp_scripts', function () {
  ?>
  <script>
    document.addEventListener('facetwp-loaded', function() {
      if (FWP.loaded) {
        window.document.dispatchEvent(new Event("rocket-DOMContentLoaded", {
          bubbles: true,
          cancelable: true
        }));
      }
    });
  </script>
  <?php
}, 100);