-
Notifications
You must be signed in to change notification settings - Fork 771
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
fix(module): do not require breakpoints in withConfig #853
Conversation
Ok, the real root cause for this: We use You've got part 1 of the fix (great work!), part 2 is to remove the Again, excellent job! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove the Array.isArray
check, otherwise LGTM
Fixes runtime error in AOT-compiled applications.
2d5cb37
to
4a48757
Compare
@CaerusKaru Thanks for the explanation. I have removed the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
I have fixed issue #846 that causes runtime errors when using
withConfig
without providingbreakpoints
parameter.There is probably a better way to fix this by locating the root cause but this solution should work for now since it is a workaround I use in my application.