This message was deleted.
# general
s
This message was deleted.
m
It sounds like the exported lambda reference is somehow undefined. It'd be hard to diagnose without seeing some code (because things do generally work as you describe). Any chance you could share something?
f
Yeah! Lets see here I can provide some snippets:
My assumption right now is this error is occurring because both files have import statements that call the other file
l
Correct. Cyclic imports in JS/TS code will lead to undefined outcome. To fix this, you will have to refactor your code so you have a unidirectional dependency chain.
f
Thank you!