Skip to content

Commit 0aa0601

Browse files
committed
Fix emoji extension method
1 parent e7c3034 commit 0aa0601

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Core/Components/Emojis/EmojiExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public static partial class EmojiExtensions
2121
/// <returns></returns>
2222
/// <exception cref="ArgumentException">Raised when the <see cref="EmojiInfo.Name"/> is not found in predefined emojis.</exception>
2323
[RequiresUnreferencedCode("This method requires dynamic access to code. This code may be removed by the trimmer.")]
24-
public static CustomEmoji GetInstance(EmojiInfo emoji)
24+
public static CustomEmoji GetInstance(this EmojiInfo emoji)
2525
{
2626
var assembly = AppDomain.CurrentDomain
2727
.GetAssemblies()

0 commit comments

Comments
 (0)