Hi,
You can check the database and try to clear the Redis cache.
Hi,
Will it work if you try this?
MyAuthentication.razor
@using Microsoft.AspNetCore.Components.WebAssembly.Authentication
@using Volo.Abp.AspNetCore.Components.Web.LeptonXTheme.Components
@using Volo.Abp.DependencyInjection
@inherits Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXTheme.Pages.Authentication
@attribute [ExposeServices(typeof(Volo.Abp.AspNetCore.Components.WebAssembly.LeptonXTheme.Pages.Authentication))]
@attribute [Dependency(ReplaceServices = true)]
<Card>
<CardBody>
<RemoteAuthenticatorView Action="@Action">
<LoggingIn>
<LoadingIndicator/>
</LoggingIn>
<CompletingLoggingIn>
<LoadingIndicator/>
</CompletingLoggingIn>
<LogOut>
<LoadingIndicator/>
</LogOut>
<CompletingLogOut>
<LoadingIndicator/>
</CompletingLogOut>
<LogOutSucceeded>
</LogOutSucceeded>
</RemoteAuthenticatorView>
</CardBody>
</Card>
MyAuthentication.razor.cs
public partial class MyAuthentication
{
public MyAuthentication(WebAssemblyCachedApplicationConfigurationClient webAssemblyCachedApplicationConfigurationClient) : base(webAssemblyCachedApplicationConfigurationClient)
{
}
protected override void OnInitialized()
{
if (Action == "logout-callback")
{
NavigationManager.NavigateTo("/authentication/login");
}
}
}
Do I have to wait until abp v8.0 is released? when will that be?
The preview version is scheduled to be released on November 15, 2023
Are there any workarounds for this
I'll let you know if there is any workaround.
Sorry for that. I will feedback to the team.
Hi,
I am trying to start the app with debugging in Visual Studio.
After I checked, yes, this is the limit of the nightly build. you can't debug the application.
Hi,
It looks like a problem with the MongoDB driver
Hi,
Sorry, I mean the Volo.Forms.Web
Nuget package.