We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e024a42 commit 1d9ea6fCopy full SHA for 1d9ea6f
app/containers/markdown/index.tsx
@@ -42,9 +42,7 @@ const SKIN_TONE_MODIFIERS = [
42
'\u{1F3FF}' // Dark Skin Tone
43
];
44
45
-const isSkinToneModifier = (unicode: string): boolean => {
46
- return SKIN_TONE_MODIFIERS.includes(unicode);
47
-};
+const isSkinToneModifier = (unicode: string): boolean => SKIN_TONE_MODIFIERS.includes(unicode);
48
49
const combineEmojisWithSkinTones = (items: any[]): any[] => {
50
if (!Array.isArray(items) || items.length === 0) return items;
0 commit comments