diff --git a/src/services/importService.ts b/src/services/importService.ts index fc987e23..514868ad 100644 --- a/src/services/importService.ts +++ b/src/services/importService.ts @@ -180,6 +180,9 @@ export const importInventory = (db: TInventoryDatabaseDocument, client: Partial< if (client.CurrentLoadOutIds) { db.CurrentLoadOutIds = client.CurrentLoadOutIds; } + if (client.Affiliations) { + db.Affiliations = client.Affiliations; + } if (client.InfestedFoundry) { db.InfestedFoundry = convertInfestedFoundry(client.InfestedFoundry); }