- Notifications
You must be signed in to change notification settings - Fork28
Open
Description
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 pluginexport const enObj: I18nObjects | undefined = undefined;
Code as work arround
export const enObj: I18nObjects = { defaultData: [ ],};
Metadata
Metadata
Assignees
Type
Projects
Status
🆕 New