Help with embedding on wordpress

Hey everyone, I’m currently trying to figure out how to embed a repel iframe into a blog post. The current HTML (autogenerated by wordpress) is:

<figure class="wp-block-embed is-type-wp-embed is-provider-replit wp-block-embed-replit"><div class="wp-block-embed__wrapper">
https://replit.com/@JayTongue/RockPaperScissors?v=1#main.py
</div></figure>

while this creates an iframe with a header, it doesn’t have a triangle play button or any other way of interacting with the repl on the site. Is this an issue with wordpress? the HTML? Replit?

TIA!

I have found the solution! I needed to put ?lite=true at the end of the URL. My final iframe ended up being:

<iframe src="https://replit.com/@JayTongue/RockPaperScissors?lite=true" name="RockPaperScissors" scrolling="Yes" height="600px" width="600px" style="border:1px solid #000000;"></iframe>