Gabe Ragland
Gabe Ragland
@rosivanov Thanks! Will test that out once I get a chance.
@jgthms I love the idea of Sass being transformed into CSS vars so you can choose the level of abstraction you want to override 1) Sass, more powerful with its...
Hey there, I'm not sure I understand the point of adding any kind of security here, as this is only meant to be used when prototyping and the code of...
May want to pass in ref so that it can be used in other hooks. Here's an example: https://usehooks.com/#useOnClickOutside
I worked around this issue by also adding a ref to the trigger element and ignoring those clicks in the handler. ```js const mainMenuTriggerRef = useRef(null); const mainMenuRef = useRef(null);...
I'm also seeing this issue on `4.0.1`. eslint warnings do not go away after being resolved until I've both deleted `.eslintcache` and restarted `react-scripts start`.
My solution is to avoid using the cached session if an access token is present in the URL hash. In that case I know that `onAuthStateChange` will fire whenever the...
This is my solution to prevent clicks on the 1password button from closing the dialog when clicked. The 1password extension absolutely positions this button over an input within the dialog....
+1 for alphabetical sorting. When viewing the diff with hundreds of pages it can be hard to verify that only the intended changes are being made.
@caseybaggz Would you mind adding a CodeSandbox demo and maybe some more code comments? Don't have a lot of experience with WebSockets so not totally sure what's going on at...