Skip to content

Commit ff6078b

Browse files
verbiage
1 parent 004a9f8 commit ff6078b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/MudBlazorPages/Pages/Home.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66
<MudText Typo="Typo.h3" GutterBottom="true">Hello, world!</MudText>
7-
<MudText Class="mb-8">Welcome to your new app, powered by MudBlazor and the .NET 8 Template!</MudText>
7+
<MudText Class="mb-8">Welcome to your new app, powered by MudBlazor and the .NET 9 Template!</MudText>
88

99
<MudAlert Severity="Severity.Normal">
1010
You can find documentation and examples on our website here:

src/MudBlazorPages/Util/UnknownEnumConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ public sealed override JsonConverter CreateConverter(Type enumType, JsonSerializ
1818
{
1919
var underlyingConverter = _underlying.CreateConverter(enumType, options);
2020
var converterType = typeof(UnknownEnumConverter<>).MakeGenericType(enumType);
21-
return (JsonConverter)Activator.CreateInstance(converterType, underlyingConverter);
21+
return (JsonConverter)Activator.CreateInstance(converterType, underlyingConverter)!;
2222
}
2323
}

0 commit comments

Comments
 (0)