Hi, so I’m slightly changing casper for my needs at https://legalico.io
In index.hbs, I just add an map partial as a tile :
<div class="post-feed">
{{> "map"}}
{{#foreach posts}}
{{#has tag="#country"}}
{{> "post-card"}}
{{/has}}
{{#has tag="#general"}}
{{> "post-card"}}
{{/has}}
{{/foreach}}
</div>
</div>
</main>
However, the tile map as you can see on the website gets repeated. Any idea where I should be looking into?
It seems to be happening at the pagination level, at the moment more article tiles get loaded while srolling.
Code of the partial
<article class="post-card" >
<div id="world-map" style="width: 100%; min-height: 50vh;"></div>
</article>