-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Bump Onyx to 2.0.91 / Enable skippable collection member IDs …
…in Onyx"
- Loading branch information
1 parent
1f6d5d7
commit 080919c
Showing
4 changed files
with
8 additions
and
12 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import {I18nManager} from 'react-native'; | ||
import Onyx from 'react-native-onyx'; | ||
import intlPolyfill from '@libs/IntlPolyfill'; | ||
import {setDeviceID} from '@userActions/Device'; | ||
import * as Device from '@userActions/Device'; | ||
Check failure on line 4 in src/setup/index.ts
|
||
import CONST from '@src/CONST'; | ||
import ONYXKEYS from '@src/ONYXKEYS'; | ||
import addUtilsToWindow from './addUtilsToWindow'; | ||
|
@@ -42,10 +42,9 @@ export default function () { | |
// Always open the home route on app startup for native platforms by clearing the lastVisitedPath | ||
[ONYXKEYS.LAST_VISITED_PATH]: initializeLastVisitedPath(), | ||
}, | ||
skippableCollectionMemberIDs: CONST.SKIPPABLE_COLLECTION_MEMBER_IDS, | ||
}); | ||
|
||
setDeviceID(); | ||
Device.setDeviceID(); | ||
|
||
// Force app layout to work left to right because our design does not currently support devices using this mode | ||
I18nManager.allowRTL(false); | ||
|