Kasra Kyanzadeh
Kasra Kyanzadeh
Thanks for react-virtualized! We're using an internal fork of `Grid` for rendering a few different parts of the UI in Airtable. e.g. in embedded card lists, like this one: https://airtable.com/whatsnew...
From [Popover.tsx](https://github.com/tamagui/tamagui/blob/master/packages/popover/src/Popover.tsx#L614) ``` const sheetActive = useSheetBreakpointActive(sheetBreakpoint) const floatingContext = useFloatingContext({ open, setOpen: handleOpenChange, disable: sheetActive, hoverable, disableFocus: disableFocus, }) as any ``` When I run the repro example, `sheetActive`...
Interesting, thank you -- that does seem to solve it in the repro. But ideally I'd love to find a way to make it work with npm because migrating our...
Ah, I figured out another temporary fix for anyone running into this with `npm`. When I add `@tamagui/floating` as an explicit top-level dependency in my package.json, the popover works as...
A related weird thing: the auto-correct suggestions include the last word of the previous line when typing the first word on a new line:
Unfortunately not
I believe the underlying cause for this, #4346, and #4347 is that Quill calls `preventDefault()` on `Enter`, which prevents all the built-in OS behaviors. I tried over-riding all the `Enter`...