Open thedevdavid opened 8 months ago
I have a TS Next.js project with an embedded Sanity Studio. Since the first i18n Sanity update, all components or HTML tags bring up react-i18next-related props, like i18nIsDynamicList.
react-i18next
i18nIsDynamicList
Probably caused by the global.d.ts file in react-i18next:
global.d.ts
declare global { namespace JSX { interface IntrinsicAttributes { i18nIsDynamicList?: boolean; } } }
Any way to get rid of this?
Hey @thedevdavid sorry you are running into this issue. I will bring this up internally to see what we can do to fix it.
I have a TS Next.js project with an embedded Sanity Studio. Since the first i18n Sanity update, all components or HTML tags bring up
react-i18next
-related props, likei18nIsDynamicList
.Probably caused by the
global.d.ts
file inreact-i18next
:Any way to get rid of this?