This commit is contained in:
2025-10-06 14:58:14 +02:00
parent fd416b5b05
commit c1af1cede9
6 changed files with 23 additions and 19 deletions
+2 -1
View File
@@ -1,5 +1,5 @@
import React, { useMemo, useState } from "react";
import { StyleSheet, View } from "react-native";
import { Platform, StyleSheet, View } from "react-native";
import ItemContainer from "../../components/ItemContainer/ItemContainer";
import ListSelection from "../../components/ListSelection/ListSelection";
import { GOALS, OTHER_OBJECTIVE_OPTION } from "../../data/data";
@@ -56,6 +56,7 @@ const Goals = ({
placeholder="Décrire lobjectif"
value={otherObjective}
setValue={handleOtherObjectiveChange}
height={Platform.OS === "web" ? 160 : undefined}
/>
</View>
);