Page not scrollable after minimizing chat window

Hey,

So I have this weird issue with the widget on mobile.

I start with:

Tawk_API.autoStart = false;

And then when a user clicks on a button on the page I call

window.Tawk_API.start();
window.Tawk_API.maximize();

and it all works perfectly.

The problem is, when chat is maximized and user clicks on the X button on the widget itself to hide / end chat, chat window goes hidden, but it leaves inline styling on body element that prevents the scroll:

height: 100% !important; min-height: 100% !important; max-height: 100% !important; width: 100% !important; min-width: 100% !important; max-width: 100% !important; overflow: hidden !important; position: fixed !important;

Is that anything me doing wrong, or is this a bug?