Hello Paweł Ryszewski,
As per the description, we understand that you are getting the below error while adding your location to the application
AADSTS900144: The request body must contain the following parameter: 'login_hint'.
This occurs when you're trying to authenticate against Azure AD, but the required login_hint parameter is missing from the request.
The login_hint parameter is used to pre-fill or suggest the username (typically an email address) for the user who is attempting to authenticate. It helps Azure AD identify the correct user account when sending a request to the authorization endpoint.
Missing login_hint in the Request:
Include the login_hint parameter with the username (e.g., email) in the request to Azure AD.
Request format included with login_hint as mentioned below.
https://login.microsoftonline.com/{tenant}/oauth2/v2.0/authorize?client_id={client_id}&response_type=code&redirect_uri={redirect_uri}&scope=openid&**login_hint=user@example.com**