Alex Ilchenko

Results 3 issues of Alex Ilchenko

Hi, I'm using Github Electron updateUpdater module on OSX and get an error: The file “update.******_” couldn’t be saved in the folder “com.electron.**_*******.ShipIt”. This module is a wrapper of Squirrel.Mac,...

# Context There is a sample `Checkbox` component: ```typescript const Checkbox = ({ isChecked = false, isIndeterminate = false, }: { isChecked?: boolean; isIndeterminate?: boolean; }) => ( ); ```...

bug
help wanted

Currently the hook returns new function on every call, so using it in effect dependencies causes calling effect on every render. The result should be a react useCallback.