Pages get autoincluded, even with -autoinclude not set

Product: PowerShell Universal
Version: 5.6.8

I am again having this issue.

I have an app where I include pages with

$pages=@(
    # some more pages not shown here
    Get-UDPage -Name 'colors'
    Get-UDPage -Name 'icons'
    Get-UDPage -Name 'upload'
    Get-UDPage -Name 'modal'

    new-UDPage -Content { invoke-UDRedirect "/Portal" -Native } -Name "Portal" -Icon @{ type='icon'; icon = 'rotate-left' }
)

So “portal” should be the last entry.
I added "upload " and “modal” today while testing.
Both pages got created with the -AutoInclude switch.
I just removed that from the code and added the pages manually.

And again duplicate entries.
I tried to reload the app, clear the browser cache and cookies…no luck.

just now noticed that a server restart helps in getting rid of duplicates.
Not convenient.