Filtering in dash table with pagination leads to warning

Hi,
I am currently experimenting with dash table and noticed that my browser (Firefox) sometimes shows a warning when I am filtering a column in a table with pagination. The warning only occurs when I am filtering a column while viewing a page of the table which is not the first (e.g. second, third, fourth page and so one).

Warning: Cannot update a component (`Connect(UnconnectedContainer)`) while rendering a different component (`c`). To locate the bad setState() call inside `c`, follow the stack trace as described in https://fb.me/setstate-in-render
    in c (created by s)
    in s (created by c)
    in Suspense (created by c)
    in c (created by CheckedComponent)
    in CheckedComponent (created by BaseTreeContainer)
    in ComponentErrorBoundary (created by BaseTreeContainer)
    in BaseTreeContainer (created by Context.Consumer)
    in Unknown (created by BaseTreeContainer)
    in div (created by it)
    in it (created by CheckedComponent)
    in CheckedComponent (created by BaseTreeContainer)
    in ComponentErrorBoundary (created by BaseTreeContainer)
    in BaseTreeContainer (created by Context.Consumer)
    in Unknown (created by UnconnectedContainer)
    in div (created by UnconnectedGlobalErrorContainer)
    in div (created by GlobalErrorOverlay)
    in div (created by GlobalErrorOverlay)
    in GlobalErrorOverlay (created by DebugMenu)
    in div (created by DebugMenu)
    in DebugMenu (created by UnconnectedGlobalErrorContainer)
    in div (created by UnconnectedGlobalErrorContainer)
    in UnconnectedGlobalErrorContainer (created by Connect(UnconnectedGlobalErrorContainer))
    in Connect(UnconnectedGlobalErrorContainer) (created by UnconnectedContainer)
    in UnconnectedContainer (created by Connect(UnconnectedContainer))
    in Connect(UnconnectedContainer) (created by UnconnectedAppContainer)
    in UnconnectedAppContainer (created by Connect(UnconnectedAppContainer))
    in Connect(UnconnectedAppContainer) (created by AppProvider)
    in Provider (created by AppProvider)
    in AppProvider

I was able to reproduce the warning with one of the examples from the docs (first example app from https://dash.plotly.com/datatable/interactivity ).

When I run this example app and filter a column in either one of the following situations I get the mentioned warning:

  • Page 3 of the table, filter column “country” for the letter “c”
  • Page 3 of the table, filter column “country” for the letter “f”
  • Page 3 of the table, filter column “continent” for the letter “n”
  • Page 4 of the table, filter column “country” for the letter “b”
  • Page 4 of the table, filter column “country” for the letter “c”
  • Page 5 of the table, filter column “country” for the letter “b”
  • Page 5 of the table, filter column “country” for the letter “c”
  • Page 5 of the table, filter column “country” for the letter “d”
  • Page 5 of the table, filter column “country” for the letter “f”

Obviously I did not try all letters for all columns on all pages but the ones given above reliably lead to a warning.

I am not really into React and cannot say if this warning is something to worry about but I would rather get no warnings. My app seems to work fine. Is this issue known? Can I do something about it?