From 0312a8132c0f16ac684d97e612b618f6dd66cb6d Mon Sep 17 00:00:00 2001
From: Paul Frazee <pfrazee@gmail.com>
Date: Thu, 29 Sep 2022 09:05:07 -0500
Subject: [PATCH] Swap new tab and share buttons in tabs modal

---
 src/view/com/modals/TabsSelector.tsx | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/view/com/modals/TabsSelector.tsx b/src/view/com/modals/TabsSelector.tsx
index 9773bcee..45492f1f 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>