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
There are currently some errors in the blazor template that is preventing the app from working correctly.
Form needs to have the @submit changed to @onsubmit
The method used to call the rust backend should be updated to GreetMsg = await JsRuntime.InvokeAsync<string>("__TAURI_INTERNALS__.invoke", "greet", new { name = GreetInput } );
With these changes, the application no longer has console errors in the webview except for an untrusted TLS error for the websocket connection.
There are currently some errors in the blazor template that is preventing the app from working correctly.
@submitchanged to@onsubmitGreetMsg = await JsRuntime.InvokeAsync<string>("__TAURI_INTERNALS__.invoke", "greet", new { name = GreetInput } );With these changes, the application no longer has console errors in the webview except for an untrusted TLS error for the websocket connection.