Skip to content

Commit

Permalink
Minor Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AathifMahir committed Apr 1, 2024
1 parent 452ff9d commit a76b9e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MauiIcons.Core/Helpers/ThemeHelper.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace MauiIcons.Core.Helpers;
internal static class ThemeHelper
{
internal static Color SetDefaultOrAssignedColor(this Color value, Color originalColor)
internal static Color SetDefaultOrAssignedColor(this Color? value, Color originalColor)
{
if (value is null)
{
Expand All @@ -10,7 +10,7 @@ internal static Color SetDefaultOrAssignedColor(this Color value, Color original
return value;
}

internal static Color SetDefaultOrAssignedColor(this Color value)
internal static Color SetDefaultOrAssignedColor(this Color? value)
{
if (value is null)
{
Expand Down

0 comments on commit a76b9e3

Please sign in to comment.