I have a listview that's displaying filtered data. This data is filtered by dropdown values that are stored in an app state. The app state is passed to the query, so everytime the page reloads the query returns a filtered list of items.
I'm using a listview to display the values using dynamic children. But that listview seems to have a limit of 100 which isn't added anywhere. As a result it's displaying a 100 items and throwing me an index out of range error for the rest.
Additionally everytime I add a particular filter (ticker_status = "Target Lead") it throws me the same error. I can verify that the values are being fetched correctly checking the debug panel, so I don't know what's causing this issue.
Please help :((