aboutsummaryrefslogtreecommitdiff
path: root/src/components/onboarding
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-01-22 16:30:46 -0500
committerIvan Chen <ivan@tagg.id>2021-01-22 17:14:20 -0500
commitd667654caf1aa4e5f4814fa927e835f13efc0650 (patch)
tree9198e2a5a63384c6eae508c04452c25425ba4685 /src/components/onboarding
parent18e9dc7509d0bf12dfabe7eba67e85553d4bac97 (diff)
changed constant name
Diffstat (limited to 'src/components/onboarding')
-rw-r--r--src/components/onboarding/TaggBigInput.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/onboarding/TaggBigInput.tsx b/src/components/onboarding/TaggBigInput.tsx
index 4212afd1..0e42bd13 100644
--- a/src/components/onboarding/TaggBigInput.tsx
+++ b/src/components/onboarding/TaggBigInput.tsx
@@ -7,7 +7,7 @@ import {
ViewStyle,
} from 'react-native';
import * as Animatable from 'react-native-animatable';
-import { TAGG_LIGHT_PURPLE } from '../../constants';
+import {TAGG_LIGHT_PURPLE} from '../../constants';
interface TaggBigInputProps extends TextInputProps {
valid?: boolean;
@@ -24,7 +24,7 @@ const TaggBigInput = React.forwardRef((props: TaggBigInputProps, ref: any) => {
<View
style={props.containerStyle ? props.containerStyle : styles.container}>
<TextInput
- style={[{ width: props.width }, styles.input]}
+ style={[{width: props.width}, styles.input]}
placeholderTextColor="#ddd"
clearButtonMode="while-editing"
ref={ref}