about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-09-29 09:05:07 -0500
committerPaul Frazee <pfrazee@gmail.com>2022-09-29 09:05:07 -0500
commit0312a8132c0f16ac684d97e612b618f6dd66cb6d (patch)
tree8a90e58a5fbde9920ffd40990432481dc36d857a
parent16fbefc3546a31e173add2d068f8011db0091aca (diff)
downloadvoidsky-0312a8132c0f16ac684d97e612b618f6dd66cb6d.tar.zst
Swap new tab and share buttons in tabs modal
-rw-r--r--src/view/com/modals/TabsSelector.tsx12
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>