about summary refs log tree commit diff
path: root/src/components/moderation
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2024-10-30 08:14:34 -0400
committerGitHub <noreply@github.com>2024-10-30 12:14:34 +0000
commite9f6a8e58d69ea3a210da895f1159c682467ecff (patch)
tree40e12df3eec7213aafed3d21cc1d705cbfcc4301 /src/components/moderation
parent21ba1fad55f4780a9c2a638830e3b21f8f46c5f3 (diff)
downloadvoidsky-e9f6a8e58d69ea3a210da895f1159c682467ecff.tar.zst
fix warning on labeler profile: emoji detected but emoji not enabled (#6011)
Diffstat (limited to 'src/components/moderation')
-rw-r--r--src/components/moderation/LabelPreference.tsx8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/components/moderation/LabelPreference.tsx b/src/components/moderation/LabelPreference.tsx
index d6dc45d1a..ecdbcfd25 100644
--- a/src/components/moderation/LabelPreference.tsx
+++ b/src/components/moderation/LabelPreference.tsx
@@ -46,8 +46,10 @@ export function Content({
 
   return (
     <View style={[a.gap_xs, a.flex_1]}>
-      <Text style={[a.font_bold, gtPhone ? a.text_sm : a.text_md]}>{name}</Text>
-      <Text style={[t.atoms.text_contrast_medium, a.leading_snug]}>
+      <Text emoji style={[a.font_bold, gtPhone ? a.text_sm : a.text_md]}>
+        {name}
+      </Text>
+      <Text emoji style={[t.atoms.text_contrast_medium, a.leading_snug]}>
         {description}
       </Text>
 
@@ -268,7 +270,7 @@ export function LabelerLabelPreference({
                 a.border,
                 t.atoms.border_contrast_low,
               ]}>
-              <Text style={[a.font_bold, t.atoms.text_contrast_low]}>
+              <Text emoji style={[a.font_bold, t.atoms.text_contrast_low]}>
                 {currentPrefLabel}
               </Text>
             </View>