You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to add fluent to photino blazor, I get this error whenever I refresh the page:
JS object instance with ID 1 does not exist (has it been disposed?).
Error: JS object instance with ID 1 does not exist (has it been disposed?).
at w (http://localhost/_framework/blazor.webview.js:1:5273)
at http://localhost/_framework/blazor.webview.js:1:3044
at new Promise ()
at g.beginInvokeJSFromDotNet (http://localhost/_framework/blazor.webview.js:1:3007)
at http://localhost/_framework/blazor.webview.js:1:48308
at EventTarget. (:1:202)
at EmbeddedBrowserWebView. (:1:43835)
at Microsoft.JSInterop.JSRuntime.InvokeAsync[TValue](Int64 targetInstanceId, String identifier, Object[] args)
at Microsoft.JSInterop.JSObjectReferenceExtensions.InvokeVoidAsync(IJSObjectReference jsObjectReference, String identifier, Object[] args)
at Microsoft.FluentUI.AspNetCore.Components.FluentKeyCode.DisposeAsync() in C:\Users\Danny\source\repos\fluentui-blazor\src\Core\Components\KeyCode\FluentKeyCode.razor.cs:line 183
at Microsoft.AspNetCore.Components.RenderTree.Renderer.<>c__DisplayClass85_0.<g__HandleAsyncExceptions|1>d.MoveNext()
Here is my program.cs:
`internal class Program
{
[STAThread]
static void Main(string[] args)
{
var appBuilder = PhotinoBlazorAppBuilder.CreateDefault(args);
When trying to add fluent to photino blazor, I get this error whenever I refresh the page:
JS object instance with ID 1 does not exist (has it been disposed?).
Error: JS object instance with ID 1 does not exist (has it been disposed?).
at w (http://localhost/_framework/blazor.webview.js:1:5273)
at http://localhost/_framework/blazor.webview.js:1:3044
at new Promise ()
at g.beginInvokeJSFromDotNet (http://localhost/_framework/blazor.webview.js:1:3007)
at http://localhost/_framework/blazor.webview.js:1:48308
at EventTarget. (:1:202)
at EmbeddedBrowserWebView. (:1:43835)
at Microsoft.JSInterop.JSRuntime.InvokeAsync[TValue](Int64 targetInstanceId, String identifier, Object[] args)
at Microsoft.JSInterop.JSObjectReferenceExtensions.InvokeVoidAsync(IJSObjectReference jsObjectReference, String identifier, Object[] args)
at Microsoft.FluentUI.AspNetCore.Components.FluentKeyCode.DisposeAsync() in C:\Users\Danny\source\repos\fluentui-blazor\src\Core\Components\KeyCode\FluentKeyCode.razor.cs:line 183
at Microsoft.AspNetCore.Components.RenderTree.Renderer.<>c__DisplayClass85_0.<g__HandleAsyncExceptions|1>d.MoveNext()
Here is my program.cs:
`internal class Program
{
[STAThread]
static void Main(string[] args)
{
var appBuilder = PhotinoBlazorAppBuilder.CreateDefault(args);
}`
Possible Problem:
I'm unable to call:
// Add services to the container. builder.Services.AddRazorComponents() .AddInteractiveServerComponents();
The text was updated successfully, but these errors were encountered: