diff --git a/src/services/importService.ts b/src/services/importService.ts index e1f8a7c3..7fb88619 100644 --- a/src/services/importService.ts +++ b/src/services/importService.ts @@ -175,8 +175,8 @@ const convertNemesis = (client: INemesisClient): INemesisDatabase => { }; }; -// Empty objects from live may have been encoded as an empty array because of PHP. -export const convertItemConfig = (client: T): T => { +// Empty objects from live may have been encoded as empty arrays because of PHP. +const convertItemConfig = (client: T): T => { return { ...client, pricol: Array.isArray(client.pricol) ? {} : client.pricol,