Tanguy Krotoff
Tanguy Krotoff
See https://www.reddit.com/r/reactjs/comments/7408cn/formikpersist_sync_formik_form_state_with/
By default the feedback type is an error: `` Should it be explicit like for `warning` and `info`? `` Then what is the type of a feedback without explicit type?...
## To Reproduce ```JSX function Test() { const { t } = useTranslation(); return ( hello world ); } ``` ``` i18next Test.ts ``` i18next-parser generates: ```JSON { "helloworld": "salutmonde",...
With Babel 6 (and 7) [babel-preset-env](https://babeljs.io/docs/plugins/preset-env) and [babel-polyfill](https://babeljs.io/docs/usage/polyfill/) documentations are misleading. Based on my experimentations with babel-preset-env + babel-polyfill (for Babel 6) here: https://github.com/tkrotoff/babel-preset-env-example Suggestions to improve babel-preset-env documentation: -...
Would be nice to have a TypeScript type definition
I have a large React code base written in TypeScript (with files named like `src/common/components/MyComponent.tsx`). delete-react-zombies does not detect any component: ``` $ ./node_modules/.bin/delete-react-zombies ⠋ Searching zombie components 0 components...
Example: ```JavaScript parseISO('2022-09-02T00:00:00+02:00').getTime() // returns 1632737400000 parseISO('2022-09-02T00:00:00+0200').getTime() // ISSUE returns 1662069600000 instead of 1632737400000 ``` Compare this to Date: ```JavaScript new Date('2022-09-02T00:00:00+02:00').getTime() // returns 1632737400000 new Date('2022-09-02T00:00:00+0200').getTime() // returns 1632737400000...
`meta:vp` is defined as `` which disables zoom 😱 Should be instead `` https://www.matuzo.at/blog/2022/please-stop-disabling-zoom/