Hi
I have yarn version 1.22.21 installed. This is the output from yarn
:
yarn install v1.22.21
[1/4] Resolving packages...
success Already up-to-date.
Done in 0.51s.
Thank you for the response.
This is the code from the backend where I already put the exact same name. But I still get the behavior that I see the property twice in the form:
private static void ConfigureExtraProperties()
{
ObjectExtensionManager.Instance.Modules()
.ConfigureSaas(saas =>
{
saas.ConfigureTenant(tenant =>
{
tenant.AddOrUpdateProperty<string>("Image");
});
});
}