From 72d696ad1b76e3c59aae94c9693ff6ad2adfd984 Mon Sep 17 00:00:00 2001 From: Ruslan <396223+khakimov@users.noreply.github.com> Date: Tue, 5 Dec 2023 18:22:21 +0700 Subject: [PATCH] Fixing fields that got mixed up (#2207) (#2842) Fixing fields that got mixed up --- .../workspace-manager/demo-objects-prefill-data/person.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/workspace/workspace-manager/demo-objects-prefill-data/person.ts b/server/src/workspace/workspace-manager/demo-objects-prefill-data/person.ts index 2f28b36b0..0944ef230 100644 --- a/server/src/workspace/workspace-manager/demo-objects-prefill-data/person.ts +++ b/server/src/workspace/workspace-manager/demo-objects-prefill-data/person.ts @@ -28,11 +28,11 @@ export const personPrefillData = async ( .into(`${schemaName}.person`, [ 'nameFirstName', 'nameLastName', - 'city', 'email', - 'avatarUrl', 'linkedinLinkUrl', 'jobTitle', + 'city', + 'avatarUrl', 'companyId', ]) .orIgnore()