Multilingual with RTL page rendering delay

Hello
I see that you marked this thread as SOLVED.
Can you please share your solution? I have the same issue.

UPDATE, I solved the issue with this code

import wixWindow from 'wix-window';
const persianLang = 'fa';
$w.onReady(function () {
    let currentLang = wixWindow.multilingual.currentLanguage;
    //based on RTL
    if (currentLang === persianLang) {
        $w('#statebox').hide();
        $w('#statebox').changeState('RTL')
        .then(() => $w('#statebox').show());
    }
});