jotai-devtools icon indicating copy to clipboard operation
jotai-devtools copied to clipboard

A powerful toolkit to enhance your development experience with Jotai

Results 7 jotai-devtools issues
Sort by recently updated
recently updated
newest added

I tried it like this first but it was complaining that an import has to be a top-level declaration: ```typescript if (process.env.NODE_ENV === 'development') { import('jotai-devtools/styles.css') } ``` I also...

https://github.com/jotaijs/jotai-devtools/assets/38493346/302457f5-a254-44cc-a0f9-8b7dc742947b

Chunk of this PR: https://github.com/jotaijs/jotai-devtools/pull/32 This will extract the repeated logic of `useAtomDevtools` and `useAtomsDevtools` regarding the initial connection to the redux extension into a shared custom hook. It will...

Fixes - https://github.com/pmndrs/jotai/discussions/1795#discussioncomment-5111855 - [x] Test Canary version on CodeSandbox - https://codesandbox.io/p/sandbox/jotai-redux-devtools-forked-2dfvcv Edit: Blocked by https://github.com/reduxjs/redux-devtools/issues/1370

Originated from this discussion: https://github.com/pmndrs/jotai/discussions/1795#discussioncomment-5111855 Notes: - I assumed that you accidentally deleted the husky prepare script in the package.json and therefore added it again. - I changed the initial...

I am using useAtomsDevtools(). If I use useSetAtom() for atom in the react component and do not useAtom() or useAtomValue(), the atom is not displayed in the Redux Devtools. As...

Tracking issue for https://github.com/pmndrs/jotai/discussions/1721