diff --git a/src/services/platforms/CapacitorPlatformService.ts b/src/services/platforms/CapacitorPlatformService.ts index ce9e1267..b1907f13 100644 --- a/src/services/platforms/CapacitorPlatformService.ts +++ b/src/services/platforms/CapacitorPlatformService.ts @@ -1424,8 +1424,8 @@ export class CapacitorPlatformService implements PlatformService { const settings: Record = {}; columns.forEach((column, index) => { - if (column !== "id" && column !== "accountDid") { - // Exclude the id and accountDid columns + if (column !== "id") { + // Exclude the id column settings[column] = row[index]; } }); diff --git a/src/services/platforms/WebPlatformService.ts b/src/services/platforms/WebPlatformService.ts index 0d5605bb..f5edcc28 100644 --- a/src/services/platforms/WebPlatformService.ts +++ b/src/services/platforms/WebPlatformService.ts @@ -772,8 +772,8 @@ export class WebPlatformService implements PlatformService { const settings: Record = {}; columns.forEach((column, index) => { - if (column !== "id" && column !== "accountDid") { - // Exclude the id and accountDid columns + if (column !== "id") { + // Exclude the id column settings[column] = row[index]; } });