James G

Results 13 comments of James G
trafficstars

Still broken for me ``` aleph.js 0.3.0-alpha.8 deno 1.22.0 v8 10.0.139.17 typescript 4.6.2 ```

Any chance the library can output the file in which it found the error? It's impossible to track down without knowing where the issue is.

Would be great to be able to supply custom components as the Next and Previous buttons. I'd like to be able to use glyph icons instead. Quick question on points...

Doesn't work for me in Sketch Version 39.1 (31720)

I haven't found a solution yet. We're still using Quill but with a custom toolbar definition in a slightly altered use case. No doubt I'll come back and address this...

Bear in mind the following code block was very quickly hacked out from our working code. It's not likely to work as it is without additional work, but it should...

> "Expect" functions do not need to be awaited From the Storybook interactions addon docs: > In order to enable step-through debugging, calls to userEvent.*, fireEvent, findBy*, waitFor* and **expect**...

Agree with @giladv I have to call two mutations on an update of a record. Two different endpoints. Both invalidate the same tag. Frequently results in race conditions and the...

Removing the actual implementation details for a moment, is it not a concern that two mutations called in quick succession - irrespective of what they are doing - would cause...

Here's an example of how I resolved my use case: ``` updateAllTheThings: build.mutation< UpdateThingsResponse | FetchBaseQueryError, UpdateThingsRequest & SetOtherThingsRequest >({ async queryFn(queryArg, _queryApi, _extraOptions, fetchWithBaseQuery) { const { thingId, foo,...