I'm trying to migrate my .NET6 Blazor Hybrid app to .NET8 and it looks like I've been caught out by the changes to rendermode in .NET8 and Radzen interactivitiy.
This app works perfectly in NET6, with the set up as per Radzen docs, including placement of in main layouy and inclusion of the Radzen js in index.html.
When I run the app with no changes, the first error I get is this one:
Claiming it can't find the opendialog function. If this was a web app, I can fix this by setting @rendermode to interactive server, however in Blazor Hybrid there is no render mode. So the solution outlined here https://forum.radzen.com/t/dialog-and-net8-0/15738/1 cannot be applied to a hybrid app (causes a compile error).
Does anyone know of a workaround?