Skip to content

Commit 1e30a02

Browse files
committed
Merge remote-tracking branch 'origin/main' into 27901
2 parents 43fd25d + 7b52fa5 commit 1e30a02

File tree

8 files changed

+13
-17
lines changed

8 files changed

+13
-17
lines changed

android/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ android {
9090
minSdkVersion rootProject.ext.minSdkVersion
9191
targetSdkVersion rootProject.ext.targetSdkVersion
9292
multiDexEnabled rootProject.ext.multiDexEnabled
93-
versionCode 1001038002
94-
versionName "1.3.80-2"
93+
versionCode 1001038101
94+
versionName "1.3.81-1"
9595
}
9696

9797
flavorDimensions "default"

ios/NewExpensify/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundlePackageType</key>
2020
<string>APPL</string>
2121
<key>CFBundleShortVersionString</key>
22-
<string>1.3.80</string>
22+
<string>1.3.81</string>
2323
<key>CFBundleSignature</key>
2424
<string>????</string>
2525
<key>CFBundleURLTypes</key>
@@ -40,7 +40,7 @@
4040
</dict>
4141
</array>
4242
<key>CFBundleVersion</key>
43-
<string>1.3.80.2</string>
43+
<string>1.3.81.1</string>
4444
<key>ITSAppUsesNonExemptEncryption</key>
4545
<false/>
4646
<key>LSApplicationQueriesSchemes</key>

ios/NewExpensifyTests/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.3.80</string>
18+
<string>1.3.81</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>1.3.80.2</string>
22+
<string>1.3.81.1</string>
2323
</dict>
2424
</plist>

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "new.expensify",
3-
"version": "1.3.80-2",
3+
"version": "1.3.81-1",
44
"author": "Expensify, Inc.",
55
"homepage": "https://new.expensify.com",
66
"description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.",

src/components/EmojiPicker/EmojiSkinToneList.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ function EmojiSkinToneList(props) {
4646
{!isSkinToneListVisible && (
4747
<PressableWithoutFeedback
4848
onPress={toggleIsSkinToneListVisible}
49-
style={[styles.flex1, styles.flexRow, styles.alignSelfCenter, styles.justifyContentStart, styles.alignItemsCenter]}
49+
style={[styles.flexRow, styles.alignSelfCenter, styles.justifyContentStart, styles.alignItemsCenter]}
5050
accessibilityLabel={props.translate('emojiPicker.skinTonePickerLabel')}
5151
accessibilityRole={CONST.ACCESSIBILITY_ROLE.BUTTON}
5252
>
53-
<View style={[styles.emojiItem, styles.justifyContentCenter]}>
53+
<View style={[styles.emojiItem, styles.wAuto, styles.justifyContentCenter]}>
5454
<Text style={[styles.emojiText, styles.ph2, styles.textNoWrap]}>{currentSkinTone.code}</Text>
5555
</View>
5656
<Text style={[styles.emojiSkinToneTitle]}>{props.translate('emojiPicker.skinTonePickerLabel')}</Text>

src/components/PopoverWithoutOverlay/index.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import styles from '../../styles/styles';
88
import * as StyleUtils from '../../styles/StyleUtils';
99
import getModalStyles from '../../styles/getModalStyles';
1010
import withWindowDimensions from '../withWindowDimensions';
11-
import usePrevious from '../../hooks/usePrevious';
1211

1312
function Popover(props) {
1413
const {onOpen, close} = React.useContext(PopoverContext);
@@ -25,8 +24,6 @@ function Popover(props) {
2524
props.outerStyle,
2625
);
2726

28-
const prevIsVisible = usePrevious(props.isVisible);
29-
3027
React.useEffect(() => {
3128
if (props.isVisible) {
3229
props.onModalShow();
@@ -43,7 +40,7 @@ function Popover(props) {
4340
Modal.willAlertModalBecomeVisible(props.isVisible);
4441

4542
// We prevent setting closeModal function to null when the component is invisible the first time it is rendered
46-
if (prevIsVisible === props.isVisible && (!firstRenderRef.current || !props.isVisible)) {
43+
if (!firstRenderRef.current || !props.isVisible) {
4744
firstRenderRef.current = false;
4845
return;
4946
}
@@ -52,7 +49,7 @@ function Popover(props) {
5249

5350
// We want this effect to run strictly ONLY when isVisible prop changes
5451
// eslint-disable-next-line react-hooks/exhaustive-deps
55-
}, [props.isVisible, prevIsVisible]);
52+
}, [props.isVisible]);
5653

5754
if (!props.isVisible) {
5855
return null;

src/styles/styles.js

-1
Original file line numberDiff line numberDiff line change
@@ -1779,7 +1779,6 @@ const styles = (theme) => ({
17791779
},
17801780

17811781
emojiSkinToneTitle: {
1782-
width: '100%',
17831782
...spacing.pv1,
17841783
fontFamily: fontFamily.EXP_NEUE_BOLD,
17851784
fontWeight: fontWeightBold,

0 commit comments

Comments
 (0)