Terrible Load Times with Custom Fonts

So, bubble’s javascript code runs a setTimeout that runs every 25ms, blocking loading of text and data on the page. It takes 4 seconds for a super simple page to load with the custom font I’m using.

Has anyone fixed this in their bubble app? In early.js, it’s repeatedly running this code:

 function ma(a) {
        setTimeout(n(function() {
            ka(this)
        }, a), 25)
    }

Would love to get some insight!

Turns out one of the font files was corrupt. I removed it, and we’re back to normal load times!