How to reset the counter of uploaded files?

Using Uppy Dasboard in a modal Vue3 page.
The upload run fine, when closing and reopening the page the message containing the number of uploaded files starting from the previous value, not from zero.

I have tried unsuccesfully with

    uppyRef.value.getState().successfulUploads = 0
    uppyRef.value.setState({ successfulUploads: 0 })
    uppyRef.value?.cancelAll()
    uppyRef.value = null

The uppyRef.reset() method seems not exist on Uppy “@uppy/core”: “^4.4.2”.