fulcrologic / fulcro-rad

Fulcro Rapid Application Development
MIT License
201 stars 46 forks source link

Change to a more compatible JS construct #116

Closed JJ-Atkinson closed 1 year ago

JJ-Atkinson commented 1 year ago

I'm running into CI problem where the JS construct (void 0 === fulcro_csrf_token) does not properly determine that the var does not exist. Instead, the construct (typeof fulcro_csrf_token !== "undefined") is more appropriate, and is represented by cljs.core/exists?.

awkay commented 1 year ago

thanks!