Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Uncaught (in promise) Error: DeltaPatcher should receive a fresh Delta when being initialized #44

Open
wuyunqiang opened this issue Feb 23, 2018 · 8 comments
Labels

Comments

@wuyunqiang
Copy link
Owner

exportduplicate.png
如果一个页面里面有两个export default 就会出现bug

@SurajMDurgad
Copy link

SurajMDurgad commented Mar 3, 2018

Even I'm facing the same issue, I have to run 'react-native run-android' command again to fix this. Its annoying to run the same command twice for every compile.

@ropaillet
Copy link

ropaillet commented Mar 5, 2018

Same here, re-running simulator seems to fix but it`s annoying

@ludobit
Copy link

ludobit commented Mar 6, 2018

Same problem! Re-running the simulator fixed it but after application reloads some times crash again.
image

@wuyunqiang
Copy link
Owner Author

facebook/react-native#18209

@surafel-nigussie
Copy link

surafel-nigussie commented Jun 25, 2018

I solved this problem by removing unexpected character inside my constructor while declaring my state. I used equal sign, while i should have used ':'
From
this.state = { email='', }

to

this.state = { email:'', }

I hope this help.

@ldco2016
Copy link

Wow, this is still an open issue? I am getting this error after upgrading to React Native 0.59.9 and React 16.8

@yogavigneshwaran
Copy link

Just kill the 'metro bundler' window and re-run the project ex: 'react-native run-android'. If you have debugger window open then refresh that too.

@byteab
Copy link

byteab commented Jul 15, 2019

I solved this problem just by removing some wrong imports
import myPheo from './src/assets/pheo.jpg'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

8 participants