File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -40,13 +40,13 @@ export default function SmartUrlInput(props: Props): Node {
40
40
const styles = React . useMemo (
41
41
( ) =>
42
42
createStyleSheet ( {
43
- wrapper : {
43
+ inputWrapper : {
44
44
flexDirection : 'row' ,
45
45
opacity : 0.8 ,
46
46
marginTop : 16 ,
47
47
marginBottom : 8 ,
48
48
} ,
49
- realmInput : {
49
+ input : {
50
50
flex : 1 ,
51
51
padding : 0 ,
52
52
fontSize : 20 ,
@@ -57,12 +57,12 @@ export default function SmartUrlInput(props: Props): Node {
57
57
) ;
58
58
59
59
return (
60
- < View style = { styles . wrapper } >
60
+ < View style = { styles . inputWrapper } >
61
61
< TextInput
62
62
value = { value }
63
63
placeholder = "your-org.zulipchat.com"
64
64
placeholderTextColor = { HALF_COLOR }
65
- style = { styles . realmInput }
65
+ style = { styles . input }
66
66
autoFocus
67
67
autoCorrect = { false }
68
68
autoCapitalize = "none"
You can’t perform that action at this time.
0 commit comments