Skip to content

Commit 4b57fd4

Browse files
authored
Merge branch 'main' into @szymczak/create-buttons
2 parents 45c748d + 9ade950 commit 4b57fd4

52 files changed

Lines changed: 466 additions & 1673 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Mobile-Expensify

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ android {
114114
minSdkVersion rootProject.ext.minSdkVersion
115115
targetSdkVersion rootProject.ext.targetSdkVersion
116116
multiDexEnabled rootProject.ext.multiDexEnabled
117-
versionCode 1009013305
118-
versionName "9.1.33-5"
117+
versionCode 1009013307
118+
versionName "9.1.33-7"
119119
// Supported language variants must be declared here to avoid from being removed during the compilation.
120120
// This also helps us to not include unnecessary language variants in the APK.
121121
resConfigs "en", "es"

ios/NewExpensify/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
</dict>
4545
</array>
4646
<key>CFBundleVersion</key>
47-
<string>9.1.33.5</string>
47+
<string>9.1.33.7</string>
4848
<key>FullStory</key>
4949
<dict>
5050
<key>OrgId</key>

ios/NotificationServiceExtension/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleShortVersionString</key>
1414
<string>9.1.33</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.1.33.5</string>
16+
<string>9.1.33.7</string>
1717
<key>NSExtension</key>
1818
<dict>
1919
<key>NSExtensionPointIdentifier</key>

ios/ShareViewController/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<key>CFBundleShortVersionString</key>
1414
<string>9.1.33</string>
1515
<key>CFBundleVersion</key>
16-
<string>9.1.33.5</string>
16+
<string>9.1.33.7</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.1.33-5",
3+
"version": "9.1.33-7",
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/CONST.ts

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6439,7 +6439,6 @@ const CONST = {
64396439
DATA_TYPES: {
64406440
EXPENSE: 'expense',
64416441
INVOICE: 'invoice',
6442-
TASK: 'task',
64436442
TRIP: 'trip',
64446443
CHAT: 'chat',
64456444
},
@@ -6508,11 +6507,6 @@ const CONST = {
65086507
LINKS: 'links',
65096508
PINNED: 'pinned',
65106509
},
6511-
TASK: {
6512-
ALL: 'all',
6513-
OUTSTANDING: 'outstanding',
6514-
COMPLETED: 'completed',
6515-
},
65166510
},
65176511
TABLE_COLUMNS: {
65186512
RECEIPT: 'receipt',
@@ -6527,10 +6521,6 @@ const CONST = {
65276521
TYPE: 'type',
65286522
ACTION: 'action',
65296523
TAX_AMOUNT: 'taxAmount',
6530-
TITLE: 'title',
6531-
ASSIGNEE: 'assignee',
6532-
CREATED_BY: 'createdBy',
6533-
IN: 'in',
65346524
},
65356525
SYNTAX_OPERATORS: {
65366526
AND: 'and',
@@ -6571,9 +6561,6 @@ const CONST = {
65716561
PAID: 'paid',
65726562
EXPORTED: 'exported',
65736563
POSTED: 'posted',
6574-
TITLE: 'title',
6575-
ASSIGNEE: 'assignee',
6576-
CREATED_BY: 'createdBy',
65776564
REIMBURSABLE: 'reimbursable',
65786565
BILLABLE: 'billable',
65796566
POLICY_ID: 'policyID',
@@ -6612,9 +6599,6 @@ const CONST = {
66126599
PAID: 'paid',
66136600
EXPORTED: 'exported',
66146601
POSTED: 'posted',
6615-
TITLE: 'title',
6616-
ASSIGNEE: 'assignee',
6617-
CREATED_BY: 'created-by',
66186602
REIMBURSABLE: 'reimbursable',
66196603
BILLABLE: 'billable',
66206604
},

src/Expensify.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import type {NativeEventSubscription} from 'react-native';
44
import {AppState, Linking, Platform} from 'react-native';
55
import type {OnyxEntry} from 'react-native-onyx';
66
import Onyx, {useOnyx} from 'react-native-onyx';
7-
import alert from './components/Alert';
87
import ConfirmModal from './components/ConfirmModal';
98
import DeeplinkWrapper from './components/DeeplinkWrapper';
109
import EmojiPicker from './components/EmojiPicker/EmojiPicker';
@@ -28,7 +27,7 @@ import * as ActiveClientManager from './libs/ActiveClientManager';
2827
import {isSafari} from './libs/Browser';
2928
import * as Environment from './libs/Environment/Environment';
3029
import FS from './libs/Fullstory';
31-
import * as Growl from './libs/Growl';
30+
import Growl, {growlRef} from './libs/Growl';
3231
import Log from './libs/Log';
3332
import migrateOnyx from './libs/migrateOnyx';
3433
import Navigation from './libs/Navigation/Navigation';
@@ -57,7 +56,7 @@ Onyx.registerLogger(({level, message, parameters}) => {
5756
// when they don't return data.
5857
const shouldShowAlert = typeof parameters === 'object' && !Array.isArray(parameters) && 'showAlert' in parameters && 'key' in parameters;
5958
if (Environment.isDevelopment() && shouldShowAlert) {
60-
alert(`${message} Key: ${parameters.key as string}`);
59+
Growl.error(`${message} Key: ${parameters.key as string}`, 10000);
6160
}
6261
} else if (level === 'hmmm') {
6362
Log.hmmm(message, parameters);
@@ -277,7 +276,7 @@ function Expensify() {
277276
>
278277
{shouldInit && (
279278
<>
280-
<GrowlNotification ref={Growl.growlRef} />
279+
<GrowlNotification ref={growlRef} />
281280
<PopoverReportActionContextMenu ref={ReportActionContextMenu.contextMenuRef} />
282281
<EmojiPicker ref={EmojiPickerAction.emojiPickerRef} />
283282
{/* We include the modal for showing a new update at the top level so the option is always present. */}

src/ROUTES.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,6 @@ const ROUTES = {
6868
SEARCH_ADVANCED_FILTERS_PAID: 'search/filters/paid',
6969
SEARCH_ADVANCED_FILTERS_EXPORTED: 'search/filters/exported',
7070
SEARCH_ADVANCED_FILTERS_POSTED: 'search/filters/posted',
71-
SEARCH_ADVANCED_FILTERS_TITLE: 'search/filters/title',
72-
SEARCH_ADVANCED_FILTERS_ASSIGNEE: 'search/filters/assignee',
73-
SEARCH_ADVANCED_FILTERS_CREATED_BY: 'search/filters/createdBy',
7471
SEARCH_ADVANCED_FILTERS_REIMBURSABLE: 'search/filters/reimbursable',
7572
SEARCH_ADVANCED_FILTERS_BILLABLE: 'search/filters/billable',
7673
SEARCH_ADVANCED_FILTERS_WORKSPACE: 'search/filters/workspace',

0 commit comments

Comments
 (0)