Change emote to emoji in settings

This commit is contained in:
oSumAtrIX 2022-02-09 15:55:29 +01:00
parent 2b401ff55b
commit 685114c31a
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

@ -10,7 +10,7 @@ module.exports = class NitroBypassSettings extends React.Component {
return (
<>
<SliderInput
note="The size of the emotes."
note="Choose the size of emojis."
minValue={16}
maxValue={128}
stickToMarkers
@ -18,7 +18,7 @@ module.exports = class NitroBypassSettings extends React.Component {
onValueChange={(size) => this.props.updateSetting('size', size)}
markers={[16, 20, 32, 48, 64, 128]}
>
Emote size
Emoji size
</SliderInput>
</>
);