Jared Reisinger

Results 14 comments of Jared Reisinger

Thanks for the feedback, @otacke! The tab-trapping should be an easy fix: in short, the crossword as a whole has one `` field that manages all keyboard input. Right now,...

Awesome! I look forward to seeing it!

So, coincidentally, I'm using go-octokit for a project I'm working on and just happen to need the "team" APIs... so I thought I'd contribute. Once of the things I noticed...

@danez, has react-docgen gone into maintenance mode? I know that for the most part, there's not a lot to do since Javascript hasn't changed that much. That said, React added...

Re: the state destructuring, you could get the best of both worlds, by pre-destructuring the state fields you want as top-level properties (like `G`, `ctx`, `isActive`, and `isConnected`?) and passing...

I've been dealing with a very similar-looking problem with NavDropdown, which results in the same symptoms at react-overlays/Dropdown's "matches.default". It appears that there's a bug somewhere between snowpack and react-bootstrap...

Hi, @akirabaruah, sorry I haven't responded to your PR yet! On a quick glance, it looks good; I'll see if I can merge it with other changes I've made recently....

Great idea! I'll have to think about what the "most natural" way to embed formatting in a clue would be... raw HTML doesn't seem very React-y, and is potentially risky/insecure......

@gitname, thank you for the very-detailed repro case! I can look into this; my initial guess is that the "everything is correct" state is getting set during the "a letter...

... and sure enough, digging into the guess-loading code, I see a comment I left for myself: ```jsx if (useStorage) { loadGuesses(newGridData, storageKey || defaultStorageKey); // TODO: find correct answers......