Application name customisation in New Universal Login pages

Hi @sorx14 ,

Welcome to the Auth0 Community!

To change the application name in your login page, you can hard code it instead of calling application.name. For example, sending the

PUT https://{{auth0_domain}}/api/v2/prompts/login/custom-text/en request with the body script

{
    "login":{
        "description":"Log in to Better name"
    }

}

Hope other folks in our community could come up with better solutions!