mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Re-enable fetch monkey-patch (#2036)

* Re-enable fetch monkey-patch

* Reorder

authored by

Eric Bailey and committed by
GitHub
3ca4bd80 4b3ec54a

+9 -4
+4 -2
index.js
··· 3 3 import {LogBox} from 'react-native' 4 4 LogBox.ignoreLogs(['Require cycle:']) // suppress require-cycle warnings, it's fine 5 5 6 - import 'platform/polyfills' 6 + import '#/platform/polyfills' 7 7 import {registerRootComponent} from 'expo' 8 + import {doPolyfill} from '#/lib/api/api-polyfill' 9 + doPolyfill() 8 10 9 - import App from './src/App' 11 + import App from '#/App' 10 12 11 13 // registerRootComponent calls AppRegistry.registerComponent('main', () => App); 12 14 // It also ensures that whether you load the app in Expo Go or in a native build,
+5 -2
index.web.js
··· 1 - import 'platform/polyfills' 1 + import '#/platform/polyfills' 2 2 import {registerRootComponent} from 'expo' 3 - import App from './src/App' 3 + import {doPolyfill} from '#/lib/api/api-polyfill' 4 + import App from '#/App' 5 + 6 + doPolyfill() 4 7 registerRootComponent(App)