[CHORE] Fix typo in CreateChannel View (#1930)
This commit is contained in:
parent
7daa3092c7
commit
da05843089
|
@ -44,7 +44,7 @@ const styles = StyleSheet.create({
|
||||||
fontSize: 17,
|
fontSize: 17,
|
||||||
...sharedStyles.textRegular
|
...sharedStyles.textRegular
|
||||||
},
|
},
|
||||||
swithContainer: {
|
switchContainer: {
|
||||||
height: 54,
|
height: 54,
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
justifyContent: 'space-between',
|
justifyContent: 'space-between',
|
||||||
|
@ -217,7 +217,7 @@ class CreateChannelView extends React.Component {
|
||||||
}) => {
|
}) => {
|
||||||
const { theme } = this.props;
|
const { theme } = this.props;
|
||||||
return (
|
return (
|
||||||
<View style={[styles.swithContainer, { backgroundColor: themes[theme].backgroundColor }]}>
|
<View style={[styles.switchContainer, { backgroundColor: themes[theme].backgroundColor }]}>
|
||||||
<Text style={[styles.label, { color: themes[theme].titleText }]}>{I18n.t(label)}</Text>
|
<Text style={[styles.label, { color: themes[theme].titleText }]}>{I18n.t(label)}</Text>
|
||||||
<Switch
|
<Switch
|
||||||
value={value}
|
value={value}
|
||||||
|
|
Loading…
Reference in New Issue