Erick

Results 4 issues of Erick

Lets say i have a hook file with a state in it. `useAppState.ts` ```` export const state = proxy({ isLocked: false, }); export const useAppState = () => { const...

Using flatten promise on idb `put` works, but not working on idb `transaction`, perhaps because `transaction` has 2 declarations? Screenshot idb transaction If i use idb directly there is no...

bug
help wanted

I have tsconfig using references like: ``` { "files": [], "references": [{ "path": "./tsconfig.node.json" }, { "path": "./tsconfig.web.json" }], } ``` However shadcn cli doesn't check reference path to look...

Stale

**What is the current behavior?** ```` const [state, copyToClipboard] = useCopyToClipboard(); function handleClick() { copyToClipboard('hello world') } ```` calling `copyToClipboard` changed the state, but it doesn't really change the actual...