Skip to content

Commit 99ae29c

Browse files
committed
fix: replace TypographyInput by TextInput
1 parent 784c383 commit 99ae29c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/src/scenes/indicateurs/CreateIndicator/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ const CreateIndicator = ({ navigation, route }) => {
108108
<Typography className={mergeClassNames(typography.textMdMedium, "text-gray-700 mt-10 mb-2")}>
109109
Nom de votre indicateur* <Typography className={mergeClassNames(typography.textSmMedium, "text-gray-700")}>(obligatoire)</Typography>
110110
</Typography>
111-
<TypographyInput
111+
<TextInput
112112
onChangeText={(e) => {
113113
setNameNewIndicator(e);
114114
setError(false);

app/src/scenes/onboarding-v2/indicators/OnboardingChooseIndicatorScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ const MultiInput = ({ categoryName }: { categoryName: NEW_INDICATORS_CATEGORIES
420420
<View className="flex">
421421
{addedInputs.map((input, index) => (
422422
<View className="rounded rounded-lg flex-1 flex-row mb-2">
423-
<TypographyInput
423+
<TextInput
424424
onChangeText={(text) => {
425425
addedInputs[index] = text;
426426
setAddedInputs(addedInputs);

app/src/scenes/survey/QuestionYesNo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const QuestionYesNo = ({ question, explanation, onPress, selected, isLast, showU
6464
/>
6565
</View>
6666
{showUserCommentInput ? (
67-
<TypographyInput
67+
<TextInput
6868
multiline={true}
6969
numberOfLines={Platform.OS === "ios" ? null : 1}
7070
minHeight={Platform.OS === "ios" ? 30 * 1 : null}

0 commit comments

Comments
 (0)