diff options
-rw-r--r-- | src/view/com/modals/TabsSelector.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/view/com/modals/TabsSelector.tsx b/src/view/com/modals/TabsSelector.tsx index 9773bceef..45492f1f3 100644 --- a/src/view/com/modals/TabsSelector.tsx +++ b/src/view/com/modals/TabsSelector.tsx @@ -150,12 +150,12 @@ export const Component = observer(() => { </View> <View style={[s.p10, styles.section]}> <View style={styles.btns}> - <TouchableWithoutFeedback onPress={onPressNewTab}> + <TouchableWithoutFeedback onPress={onPressShareTab}> <View style={[styles.btn]}> <View style={styles.btnIcon}> - <FontAwesomeIcon size={16} icon="plus" /> + <FontAwesomeIcon size={16} icon="share" /> </View> - <Text style={styles.btnText}>New tab</Text> + <Text style={styles.btnText}>Share</Text> </View> </TouchableWithoutFeedback> <TouchableWithoutFeedback onPress={onPressCloneTab}> @@ -166,12 +166,12 @@ export const Component = observer(() => { <Text style={styles.btnText}>Clone tab</Text> </View> </TouchableWithoutFeedback> - <TouchableWithoutFeedback onPress={onPressShareTab}> + <TouchableWithoutFeedback onPress={onPressNewTab}> <View style={[styles.btn]}> <View style={styles.btnIcon}> - <FontAwesomeIcon size={16} icon="share" /> + <FontAwesomeIcon size={16} icon="plus" /> </View> - <Text style={styles.btnText}>Share</Text> + <Text style={styles.btnText}>New tab</Text> </View> </TouchableWithoutFeedback> </View> |