ソースを参照

updated text in trips

Viktoriia 1 週間 前
コミット
a5169da880

+ 2 - 2
src/screens/InAppScreens/TravelsScreen/Components/TripItem/index.tsx

@@ -44,8 +44,8 @@ const TripItem = ({ item }: { item: TripsData }) => {
       {item.dates_missing === 1 ? (
         <View style={{ flexDirection: 'row', gap: 6, alignItems: 'center', marginBottom: 10 }}>
           <WarningIcon color={Colors.RED} width={16} height={16} />
-          <Text style={{ fontSize: 14, fontWeight: '600', color: Colors.RED }}>
-            Fill in exact dates.
+          <Text style={{ flex: 1, fontSize: 14, fontWeight: '600', color: Colors.RED, paddingRight: 4 }}>
+            Fill in exact dates to get accurate statistics.
           </Text>
         </View>
       ) : null}