Edmundo Santos
Edmundo Santos
This would be useful as well when needing to style something like – which right now I don't think it's possible: ```html Link in bold and italic. ``` Or is...
+1 :dancer:
Maybe something like this would work? ```jsx const keyboardShortcuts = useCallback((event) => { if (event.keyCode === 27) { closeModal(); } }, []); useEffect(() => { document.addEventListener('keydown', keyboardShortcuts); return () =>...
Try declare `slideResize: 0`, works for me :) Update: my miss, still no image :(
The [documentation](http://toolchain.gitbook.com/config.html) says: > “These files must be at the root of your book (or the root of every language book). Paths such as `dir/MY_README.md` are not accepted.” I ran...
First time using Sanity with Next.js and having this issue also, for me the two imports that are causing it were: ```tsx import { createClient } from 'next-sanity'; import {...
Setting `textValue` on `` with complex children enabled the typeahead functionality for me. In my case, I was running into the issue because I have icons in my Select items,...