RTL App blank pages

I have a RTL app and I disabled the view transitions because it causes blank pages.

$ionicConfigProvider.views.transition('none');

but I used modals and after closing the modal I see the undelign page for a second then it dissappear and I see a blank page.
but if I resized the browser window everything appear again.
and if I switched to LTR everything is working.
so what should I do?

The issue could be click-block-hide class that dynamically added in DOM. You have to change translate value using below code.

.rtl .click-block-hide { @include translate3d(9999px, 0, 0); }