John
John
Other person with the same issue: https://community.redwoodjs.com/t/redwood-v7-0-0-upgrade-guide/5713/54
I tried that on netlify without success: ``` export const isAuthenticated = () => { const currentUserDescriptor = Object.getOwnPropertyDescriptor( context, 'currentUser' ) console.log('currentUserDescriptor', currentUserDescriptor) const currentUser = currentUserDescriptor ? currentUserDescriptor.value...
I've reproduced the issue in a new repo and a new netlify. https://redwood-auth-test.netlify.app/ Using clerk auth.
Ok! I fixed it here. I disabled netlify's esbuild bundler in netlify.toml and that fixed it for me. ``` [functions] # node_bundler = "esbuild" ```
@chris-morris-h2o Closing for now... lmk if you want me to reopen
+1 this question
I'm trying to put together something for this...
Dumb question, but when you're referring to "Sets" in javascript, you're talking about associative arrays, correct?
Also, what do you guys think of a method signature like this? `function storedObservable (key, defaultValue, debounce = 500, type)`
How do you recognize the difference between an obj and a map in these cases? storedObservable('text', {'myObjKey':1}, 500) storedObservable('text', {'myMapKey':1}, 500) Both of the default values appear to be similar...