Moa Torres
Moa Torres
Just a heads-up: none of the above seems to work for me, either with enzyme's `mount` function or react-test-renderer's `renderer.create`. By "none of the above" I mean any `{ ssr:...
What worked for me was adding the `onError` noop function suggested by @mathieuhasum inside the actual `useMutation` hook, like so: ```js export const useLogin = () => useMutation(SIGNIN, { onError:...
Same here. Right now my whole "Nx experience" feels like product owners went all crazy with plugins, "build anything" capabilities, and left behind the simplicity and truly greatness of `nx`:...
Another workaround: use React's `default` prop alongside with `children` to create a `` wrapper. `playroom/components.js` ```jsx export const State = (props) => { const result = React.useState(props.default) return props.children(result) }...
We can workaround with the `themeGet` function. `constants.ts` ```ts import { themeGet } from '@styled-system/theme-get' import { get as getKey } from 'styled-system' import theme from './path/to/my-theme' export const get...
I guess `upgrade_secure_headers` "working" on *non* https requests became the default behavior in `localhost`? Just so I understand better, this issue is from 2017 and I'm still experiencing it as...
Similar issue here. Is there any workaround so we can use `.git` inside the Dev Container?
> I switched to https://github.com/michaelgmcd/vscode-language-babel also. Colors are a bit different but other than that it works perfectly. > > 🤷♂ Sweet, thanks!
I think he meant that type definitions of `Message` are conflicting (and also not top-level exported). If we import `Message` from `import { Message } from 'console-feed/lib/definitions/Console'`: ```tsx import {...