Uppy's "isFixed" doesn't come off

I’m using Dashboard and DashboardModal components. I upload an image via Dashboard, then if I want to replace the image, I have a button that opens the modal.

The problem is when it finishes uploading, it doesn’t remove “isFixed” class from the body tag.

I have only these two imports:

import '@uppy/core/dist/style.css'
import '@uppy/dashboard/dist/style.css'

It seems the class is only added and removed when disablePageScrollWhenModalOpen is true. Have you set that option and the class is still there when you close it? Do you have uppy as vanilla js or inside a framework?

I don’t have the option passed. I’m using it in a Next application, @uppy/react package.

Here is the way I use it:

<DashboardModal
        uppy={uppy}
        open={isChangeModalVisible}
        onRequestClose={() => setIsChangeModalVisible(false)}
        proudlyDisplayPoweredByUppy={false}
        closeModalOnClickOutside
        closeAfterFinish
      />

I added the prop with “false” value, it’s okay now.

Thank you