Levin Rickert

Results 130 comments of Levin Rickert

@snowystinger Yeah. This does not seem to be defined by a standard and every browser uses a slightly different implementation. > From what I see, Option+click on a native link...

@acao Any updates on this? I'm still facing `GraphQL Config file is not available in the provided config directory` in multi-root workspaces.

I'm also seeing the same issue that inactive queries are getting refetched when just passing a `DocumentNode` to `refetchQueries`. Calling `client.getObservableQueries()` doesn't include these queries that still get refetched. The...

After digging a bit deeper I realized that my queries are duplicate in `queryManager.queries` for some reason. Queries get correctly removed by `queryManager.stopQuery()` but these duplicates aren't.

I think what I'm seeing is https://github.com/apollographql/apollo-client/issues/9903

@reidbarber I have to use toasts to display progress on a process that runs for a couple of seconds. Closing and re-opening the toast for every percentage change is not...

I was also just hit by this and discovered this after looking into the `.d.ts` files that are shipping with React Aria Components. ```diff - export const MenuItem: (props: MenuItemProps...

This is really needed as otherwise Popovers (Menus in our case) inside a Modal Dialog don't overlay the Modal Dialog which uses `z-index` as written in code examples from the...

@snowystinger I don't think this has anything to do with React but simply that the `mouseout`/`mouseleave` event never fires on the `Row` as the `Popover` puts a full screen overlay...