Charlie Jonas
Charlie Jonas
When the VF page is loaded into lightning, the request stop working because the app is using `?isdtp=p1` gets to the instance url `__RESTHOST__`. Fix: update the header to remove...
https://www.snowpack.dev/
https://code.visualstudio.com/docs/editor/extension-gallery#_workspace-recommended-extensions
Instead of maintaining separate branches, could be cool to just add a [boiler-room-custodian config ](https://github.com/trstringer/boiler-room-custodian) which resets the project. Would maybe still want separate branch for redux
Currently production build is using the same settings as dev environment. Should probably optimize react and potentially source maps?
In chapter 8, `Maybe` is defined as follows: ```js class Maybe { static of(x) { return new Maybe(x); } get isNothing() { return this.$value === null || this.$value === undefined;...
In chapter 5 (curry), you first [encounter exercises](https://mostly-adequate.gitbook.io/mostly-adequate-guide/ch04#lets-practice). The section states: > Throughout the book, you might encounter an 'Exercises' section like this one. Exercises can be done directly in-browser...
**Describe the bug** When attempting to create a link where the source and target node are the same, it does not appear to work. EG: ```js const data = {...
If I load you async example into a project, i get the following error on `return store.dispatch(fetchData())` ``` Argument of type '(dispatch: any) => Promise' is not assignable to parameter...