Skip to content

Commit 75798e1

Browse files
committed
Update render mode and add FluentTooltipProvider
Updated the render mode for the `Routes` component in the `App.razor` file from `InteractiveWebAssembly` to a new instance of `InteractiveWebAssemblyRenderMode` with a parameter of `false`. Also, a new `FluentTooltipProvider` component has been added to the `App.razor` file to provide tooltips for other components in the application.
1 parent 877f2d7 commit 75798e1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/CodeBreaker.Blazor/Components/App.razor

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<body>
3838
<div id="app">
3939
@* Authentication currently only works with WebAssembly. *@
40-
<Routes @rendermode="InteractiveWebAssembly" />
40+
<Routes @rendermode="new InteractiveWebAssemblyRenderMode(false)" />
4141
</div>
4242

4343
<div id="blazor-error-ui">
@@ -68,6 +68,7 @@
6868
</script>
6969
<script>navigator.serviceWorker.register('service-worker.js');</script>
7070
<script src="_content/BlazorApplicationInsights/JsInterop.js"></script>
71+
<FluentTooltipProvider />
7172
</body>
7273
7374
</html>

0 commit comments

Comments
 (0)