diff --git a/android/app/build.gradle b/android/app/build.gradle index 9c8449520332..f5a58059d0b5 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -152,8 +152,8 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion multiDexEnabled rootProject.ext.multiDexEnabled - versionCode 1001017102 - versionName "1.1.71-2" + versionCode 1001017103 + versionName "1.1.71-3" } splits { abi { diff --git a/ios/NewExpensify/Info.plist b/ios/NewExpensify/Info.plist index afcf9176d594..6ead502221df 100644 --- a/ios/NewExpensify/Info.plist +++ b/ios/NewExpensify/Info.plist @@ -30,7 +30,7 @@ CFBundleVersion - 1.1.71.2 + 1.1.71.3 ITSAppUsesNonExemptEncryption LSApplicationQueriesSchemes diff --git a/ios/NewExpensifyTests/Info.plist b/ios/NewExpensifyTests/Info.plist index 8a8f60a0a71f..8607b6edf1d5 100644 --- a/ios/NewExpensifyTests/Info.plist +++ b/ios/NewExpensifyTests/Info.plist @@ -19,6 +19,6 @@ CFBundleSignature ???? CFBundleVersion - 1.1.71.2 + 1.1.71.3 diff --git a/package-lock.json b/package-lock.json index aca76e539b4d..6e6afef53e98 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.1.71-2", + "version": "1.1.71-3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index c2c98e3acbfc..85297204e521 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.1.71-2", + "version": "1.1.71-3", "author": "Expensify, Inc.", "homepage": "https://new.expensify.com", "description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.", diff --git a/src/components/VideoChatButtonAndMenu.js b/src/components/VideoChatButtonAndMenu.js index 8fe3bdacfa1e..504bcbbba51d 100755 --- a/src/components/VideoChatButtonAndMenu.js +++ b/src/components/VideoChatButtonAndMenu.js @@ -4,6 +4,7 @@ import { View, Pressable, Dimensions, Linking, } from 'react-native'; import PropTypes from 'prop-types'; +<<<<<<< HEAD:src/components/VideoChatButtonAndMenu.js import Icon from './Icon'; import * as Expensicons from './Icon/Expensicons'; import Popover from './Popover'; @@ -19,6 +20,33 @@ import compose from '../libs/compose'; import Navigation from '../libs/Navigation/Navigation'; import ROUTES from '../ROUTES'; import Tooltip from './Tooltip'; +======= +import Icon from '../Icon'; +import * as Expensicons from '../Icon/Expensicons'; +import Popover from '../Popover'; +import MenuItem from '../MenuItem'; +import ZoomIcon from '../../../assets/images/zoom-icon.svg'; +import GoogleMeetIcon from '../../../assets/images/google-meet.svg'; +import CONST from '../../CONST'; +import styles from '../../styles/styles'; +import themeColors from '../../styles/themes/default'; +import withWindowDimensions, {windowDimensionsPropTypes} from '../withWindowDimensions'; +import withLocalize, {withLocalizePropTypes} from '../withLocalize'; +import compose from '../../libs/compose'; +import Navigation from '../../libs/Navigation/Navigation'; +import ROUTES from '../../ROUTES'; +import Tooltip from '../Tooltip'; +import {propTypes as videoChatButtonAndMenuPropTypes, defaultProps} from './videoChatButtonAndMenuPropTypes'; + +const propTypes = { + /** Link to open when user wants to create a new google meet meeting */ + googleMeetURL: PropTypes.string.isRequired, + + ...videoChatButtonAndMenuPropTypes, + ...withLocalizePropTypes, + ...windowDimensionsPropTypes, +}; +>>>>>>> 99b2b8590 (Merge pull request #9315 from rushatgabhane/fix-console-error):src/components/VideoChatButtonAndMenu/BaseVideoChatButtonAndMenu.js const propTypes = { ...withLocalizePropTypes, diff --git a/src/components/VideoChatButtonAndMenu/videoChatButtonAndMenuPropTypes.js b/src/components/VideoChatButtonAndMenu/videoChatButtonAndMenuPropTypes.js new file mode 100644 index 000000000000..fa06f7bfc447 --- /dev/null +++ b/src/components/VideoChatButtonAndMenu/videoChatButtonAndMenuPropTypes.js @@ -0,0 +1,12 @@ +import PropTypes from 'prop-types'; + +const propTypes = { + /** If this is the Concierge chat, we'll open the modal for requesting a setup call instead of showing popover menu */ + isConcierge: PropTypes.bool, +}; + +const defaultProps = { + isConcierge: false, +}; + +export {propTypes, defaultProps};