Skip to content

Commit b5424b0

Browse files
committed
SmartUrlInput [nfc]: Rename styles
1 parent e2854d1 commit b5424b0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/common/SmartUrlInput.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ export default function SmartUrlInput(props: Props): Node {
4040
const styles = React.useMemo(
4141
() =>
4242
createStyleSheet({
43-
wrapper: {
43+
inputWrapper: {
4444
flexDirection: 'row',
4545
opacity: 0.8,
4646
marginTop: 16,
4747
marginBottom: 8,
4848
},
49-
realmInput: {
49+
input: {
5050
flex: 1,
5151
padding: 0,
5252
fontSize: 20,
@@ -57,12 +57,12 @@ export default function SmartUrlInput(props: Props): Node {
5757
);
5858

5959
return (
60-
<View style={styles.wrapper}>
60+
<View style={styles.inputWrapper}>
6161
<TextInput
6262
value={value}
6363
placeholder="your-org.zulipchat.com"
6464
placeholderTextColor={HALF_COLOR}
65-
style={styles.realmInput}
65+
style={styles.input}
6666
autoFocus
6767
autoCorrect={false}
6868
autoCapitalize="none"

0 commit comments

Comments
 (0)