You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the example code of a plugin the src/i18n/locales/enObj.tsx is filled with an object. Because I did not required the object i made it undefined but this will throw an exception which crashes the plugin boot.
The code which wil crash the plugin export const enObj: I18nObjects | undefined = undefined;
The text was updated successfully, but these errors were encountered:
sjhoeksma
changed the title
"export const enObj: I18nObjects | undefined = undefined;" within src/i18n/locales/enObj.tsx with crash component
"export const enObj: I18nObjects | undefined = undefined;" within src/i18n/locales/enObj.tsx will crash component
Feb 24, 2024
In the example code of a plugin the src/i18n/locales/enObj.tsx is filled with an object. Because I did not required the object i made it undefined but this will throw an exception which crashes the plugin boot.
The code which wil crash the plugin
export const enObj: I18nObjects | undefined = undefined;
Code as work arround
The text was updated successfully, but these errors were encountered: