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