Skip to content

Commit

Permalink
Fix emoji extension method
Browse files Browse the repository at this point in the history
  • Loading branch information
vnbaaij committed Dec 3, 2024
1 parent e7c3034 commit 0aa0601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Components/Emojis/EmojiExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static partial class EmojiExtensions
/// <returns></returns>
/// <exception cref="ArgumentException">Raised when the <see cref="EmojiInfo.Name"/> is not found in predefined emojis.</exception>
[RequiresUnreferencedCode("This method requires dynamic access to code. This code may be removed by the trimmer.")]
public static CustomEmoji GetInstance(EmojiInfo emoji)
public static CustomEmoji GetInstance(this EmojiInfo emoji)
{
var assembly = AppDomain.CurrentDomain
.GetAssemblies()
Expand Down

0 comments on commit 0aa0601

Please sign in to comment.