Skip to content

Commit 1d9ea6f

Browse files
committed
chore: format code and fix lint issues [skip ci]
1 parent e024a42 commit 1d9ea6f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

app/containers/markdown/index.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,7 @@ const SKIN_TONE_MODIFIERS = [
4242
'\u{1F3FF}' // Dark Skin Tone
4343
];
4444

45-
const isSkinToneModifier = (unicode: string): boolean => {
46-
return SKIN_TONE_MODIFIERS.includes(unicode);
47-
};
45+
const isSkinToneModifier = (unicode: string): boolean => SKIN_TONE_MODIFIERS.includes(unicode);
4846

4947
const combineEmojisWithSkinTones = (items: any[]): any[] => {
5048
if (!Array.isArray(items) || items.length === 0) return items;

0 commit comments

Comments
 (0)