You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/libs/ReportUtils.ts
+9-2Lines changed: 9 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,7 @@ import SCREENS from '@src/SCREENS';
37
37
import type {
38
38
BankAccountList,
39
39
Beta,
40
+
BetaConfiguration,
40
41
IntroSelected,
41
42
OnyxInputOrEntry,
42
43
OutstandingReportsByPolicyIDDerivedValue,
@@ -1115,6 +1116,12 @@ Onyx.connectWithoutView({
1115
1116
callback: (value) => (allBetas = value),
1116
1117
});
1117
1118
1119
+
let betaConfiguration: OnyxEntry<BetaConfiguration> = {};
1120
+
Onyx.connectWithoutView({
1121
+
key: ONYXKEYS.BETA_CONFIGURATION,
1122
+
callback: (value) => (betaConfiguration = value ?? {}),
1123
+
});
1124
+
1118
1125
let allTransactions: OnyxCollection<Transaction> = {};
1119
1126
let reportsTransactions: Record<string, Transaction[]> = {};
1120
1127
Onyx.connectWithoutView({
@@ -11580,8 +11587,8 @@ function prepareOnboardingOnyxData({
11580
11587
11581
11588
// Guides are assigned and tasks are posted in the #admins room for the MANAGE_TEAM and TRACK_WORKSPACE onboarding actions, except for emails that have a '+'.
0 commit comments