Has forms authentication been disabled?

Product: PowerShell Universal
Version: 1.4.6

Has forms authentication be removed? I notice that when I updated to 2026.1.2 that I received the following error notification and that forms login was gone from the Security menu and login page.

Parameter set cannot be resolved using the specified named parameters. One or more parameters issued cannot be used together or an insufficient number of parameters were provided.

I found another post where it was mentioned. So it’s a case of removing the domain switch, which worked previously:

Set-PSUAuthenticationMethod -Type “Form” -ScriptBlock {
param(
[PSCredential]$Credential
)

#
#   You can call whatever cmdlets you like to conduct authentication here.
#   Just make sure to return the $Result with the Success property set to $true
#

New-PSUAuthenticationResult -ErrorMessage 'Bad username or password'

} -Native