Skip to content

Commit 99a3c23

Browse files
committed
Merge branch 'main' of https://github.com/TaduJR/App into refactor-decompose-popover-menu
2 parents e3ebb88 + cbde538 commit 99a3c23

36 files changed

Lines changed: 876 additions & 190 deletions

File tree

Mobile-Expensify

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ android {
111111
minSdkVersion rootProject.ext.minSdkVersion
112112
targetSdkVersion rootProject.ext.targetSdkVersion
113113
multiDexEnabled rootProject.ext.multiDexEnabled
114-
versionCode 1009037407
115-
versionName "9.3.74-7"
114+
versionCode 1009037500
115+
versionName "9.3.75-0"
116116
// Supported language variants must be declared here to avoid from being removed during the compilation.
117117
// This also helps us to not include unnecessary language variants in the APK.
118118
resConfigs "en", "es"

ios/NewExpensify/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<key>CFBundlePackageType</key>
2424
<string>APPL</string>
2525
<key>CFBundleShortVersionString</key>
26-
<string>9.3.74</string>
26+
<string>9.3.75</string>
2727
<key>CFBundleSignature</key>
2828
<string>????</string>
2929
<key>CFBundleURLTypes</key>
@@ -44,7 +44,7 @@
4444
</dict>
4545
</array>
4646
<key>CFBundleVersion</key>
47-
<string>9.3.74.7</string>
47+
<string>9.3.75.0</string>
4848
<key>FullStory</key>
4949
<dict>
5050
<key>OrgId</key>

ios/NotificationServiceExtension/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
<key>CFBundleName</key>
1212
<string>$(PRODUCT_NAME)</string>
1313
<key>CFBundleShortVersionString</key>
14-
<string>9.3.74</string>
14+
<string>9.3.75</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.3.74.7</string>
16+
<string>9.3.75.0</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionPointIdentifier</key>

ios/ShareViewController/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
<key>CFBundleName</key>
1212
<string>$(PRODUCT_NAME)</string>
1313
<key>CFBundleShortVersionString</key>
14-
<string>9.3.74</string>
14+
<string>9.3.75</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.3.74.7</string>
16+
<string>9.3.75.0</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionAttributes</key>

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "new.expensify",
3-
"version": "9.3.74-7",
3+
"version": "9.3.75-0",
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/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ import SafeArea from './components/SafeArea';
3131
import ScrollOffsetContextProvider from './components/ScrollOffsetContextProvider';
3232
import SidePanelContextProvider from './components/SidePanel/SidePanelContextProvider';
3333
import SVGDefinitionsProvider from './components/SVGDefinitionsProvider';
34-
import {EditingCellProvider} from './components/Table/EditableCell';
3534
import ThemeIllustrationsProvider from './components/ThemeIllustrationsProvider';
3635
import ThemeProvider from './components/ThemeProvider';
3736
import ThemeStylesProvider from './components/ThemeStylesContextProvider';
37+
import {EditingCellProvider} from './components/TransactionItemRow/EditableCell';
3838
import {KeyboardStateProvider} from './components/withKeyboardState';
3939
import CONFIG from './CONFIG';
4040
import CONST from './CONST';

src/ROUTES.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1201,7 +1201,12 @@ const ROUTES = {
12011201
NEW_REPORT_WORKSPACE_SELECTION: {
12021202
route: 'new-report-workspace-selection',
12031203
getRoute: (isMovingExpenses?: boolean, backTo?: string) => {
1204-
const baseRoute = `new-report-workspace-selection${isMovingExpenses ? '?isMovingExpenses=true' : ''}` as const;
1204+
const params = new URLSearchParams();
1205+
if (isMovingExpenses) {
1206+
params.set('isMovingExpenses', 'true');
1207+
}
1208+
const query = params.toString();
1209+
const baseRoute = `new-report-workspace-selection${query ? `?${query}` : ''}` as const;
12051210

12061211
// eslint-disable-next-line no-restricted-syntax -- Legacy route generation
12071212
return getUrlWithBackToParam(baseRoute, backTo);

src/components/MoneyRequestReportView/MoneyRequestReportTransactionItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import {getButtonRole} from '@components/Button/utils';
55
import OfflineWithFeedback from '@components/OfflineWithFeedback';
66
import {PressableWithFeedback} from '@components/Pressable';
77
import type {SearchColumnType, TableColumnSize} from '@components/Search/types';
8-
import {useEditingCellState} from '@components/Table/EditableCell';
98
import TransactionItemRow from '@components/TransactionItemRow';
9+
import {useEditingCellState} from '@components/TransactionItemRow/EditableCell';
1010
import useAnimatedHighlightStyle from '@hooks/useAnimatedHighlightStyle';
1111
import useLocalize from '@hooks/useLocalize';
1212
import useResponsiveLayout from '@hooks/useResponsiveLayout';

0 commit comments

Comments
 (0)