Skip to content

Commit e5bc583

Browse files
committed
fix: remove nullable reference to resolve warning CS8632
1 parent fd46f76 commit e5bc583

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Blazor-ApexCharts/Internal/ChartUtilities.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ internal static class ChartUtilities
4242
/// <see langword="true"/> if the string structurally resembles a JavaScript function;
4343
/// otherwise, <see langword="false"/>.
4444
/// </returns>
45-
internal static bool IsJavaScriptFunction(string? candidate)
45+
internal static bool IsJavaScriptFunction(string candidate)
4646
{
4747
if (string.IsNullOrWhiteSpace(candidate))
4848
return false;

0 commit comments

Comments
 (0)