diff --git a/apps/mobile/src/components/MergeEditor/index.js b/apps/mobile/src/components/MergeEditor/index.js index 04f43a410..0560b1f95 100644 --- a/apps/mobile/src/components/MergeEditor/index.js +++ b/apps/mobile/src/components/MergeEditor/index.js @@ -1,5 +1,5 @@ import React, {createRef, useEffect, useState} from 'react'; -import {Modal, SafeAreaView, TouchableOpacity, View} from 'react-native'; +import {Modal, SafeAreaView, TouchableOpacity, View, Text} from 'react-native'; import Animated, {Easing} from 'react-native-reanimated'; import {useSafeAreaInsets} from 'react-native-safe-area-context'; import Icon from 'react-native-vector-icons/MaterialCommunityIcons'; @@ -432,6 +432,9 @@ const MergeEditor = () => { style={{maxWidth: '80%'}} color={colors.icon} size={SIZE.xs}> + + (This Device) + {' '} Saved on {timeConverter(primaryData.dateEdited)} { style={{maxWidth: '80%'}} color={colors.icon} size={SIZE.xs}> + + (Incoming) + {' '} Saved on {timeConverter(secondaryData.dateEdited)} { const onPress = async () => { - if (note.conflicted) { + if (!note.conflicted) { eSendEvent(eShowMergeDialog, note); return; }