I have a test database with many deleted app users from testing the Api:
select actors.type, actors."deletedAt" is null as active, count(id) from actors
group by actors."type", actors."deletedAt" is null
When I enter the page or refresh it, it shows the number of app users including the deleted ones:
When I switch back to the page after selecting another, but without refreshing, the number of app users is correct - well, almost, I am missing one, but that may be some selection problem in the database
I normally would report this technical error on github, but I was asked not to do this to keep github uncluttered)