diff --git a/src/applications/item-pile-config/settings/merchant.svelte b/src/applications/item-pile-config/settings/merchant.svelte index 2d8b0abc..05c72199 100644 --- a/src/applications/item-pile-config/settings/merchant.svelte +++ b/src/applications/item-pile-config/settings/merchant.svelte @@ -80,7 +80,7 @@ { id: `merchant-columns-item-pile-config-${pileActor.id}` }, { title: localize("ITEM-PILES.Applications.MerchantColumnsEditor.TitleActor", { actor_name: pileActor.name }), } ).then((result) => { - pileData.merchantColumns = Array.isArray(result.merchantColumns) ? result.merchantColumns : []; + pileData.merchantColumns = Array.isArray(result) ? result : []; }); }