From e382641ac301df67ce5ffe9046701604a15e9d95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Malfait?= Date: Thu, 5 Feb 2026 17:49:43 +0100 Subject: [PATCH] fix: use real founder headshots in seed data (#17749) ## Summary Updates the avatar URLs for seeded founders to use properly named images instead of generic numbered placeholder images. ## Changes Updates `prefill-people.ts` to reference new image paths in `twentyhq/placeholder-images/founders/`: | Person | Company | New Image Path | |--------|---------|----------------| | Brian Chesky | Airbnb | `founders/brian-chesky.jpg` | | Dario Amodei | Anthropic | `founders/dario-amodei.jpg` | | Patrick Collison | Stripe | `founders/patrick-collison.jpg` | | Dylan Field | Figma | `founders/dylan-field.jpg` | | Ivan Zhao | Notion | `founders/ivan-zhao.jpg` | ## Related Requires a corresponding PR on `twentyhq/placeholder-images` to add the actual founder headshot images to the `founders/` directory. ## Why The previous placeholder images were generic numbered images that didn't represent the actual people. This creates a single source of truth for founder images that all workspaces can reference. --- .../standard-objects-prefill-data/prefill-people.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/prefill-people.ts b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/prefill-people.ts index 69b6e2f6a7..005d14da95 100644 --- a/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/prefill-people.ts +++ b/packages/twenty-server/src/engine/workspace-manager/standard-objects-prefill-data/prefill-people.ts @@ -49,7 +49,7 @@ export const prefillPeople = async ( city: 'San Francisco', emailsPrimaryEmail: 'chesky@airbnb.com', avatarUrl: - 'https://twentyhq.github.io/placeholder-images/people/image-3.png', + 'https://twentyhq.github.io/placeholder-images/founders/brian-chesky.jpg', position: 1, createdBySource: FieldActorSource.SYSTEM, createdByWorkspaceMemberId: null, @@ -68,7 +68,7 @@ export const prefillPeople = async ( city: 'San Francisco', emailsPrimaryEmail: 'amodei@anthropic.com', avatarUrl: - 'https://twentyhq.github.io/placeholder-images/people/image-89.png', + 'https://twentyhq.github.io/placeholder-images/founders/dario-amodei.jpg', position: 2, createdBySource: FieldActorSource.SYSTEM, createdByWorkspaceMemberId: null, @@ -87,7 +87,7 @@ export const prefillPeople = async ( city: 'San Francisco', emailsPrimaryEmail: 'collison@stripe.com', avatarUrl: - 'https://twentyhq.github.io/placeholder-images/people/image-47.png', + 'https://twentyhq.github.io/placeholder-images/founders/patrick-collison.jpg', position: 3, createdBySource: FieldActorSource.SYSTEM, createdByWorkspaceMemberId: null, @@ -106,7 +106,7 @@ export const prefillPeople = async ( city: 'San Francisco', emailsPrimaryEmail: 'field@figma.com', avatarUrl: - 'https://twentyhq.github.io/placeholder-images/people/image-40.png', + 'https://twentyhq.github.io/placeholder-images/founders/dylan-field.jpg', position: 4, createdBySource: FieldActorSource.SYSTEM, createdByWorkspaceMemberId: null, @@ -125,7 +125,7 @@ export const prefillPeople = async ( city: 'San Francisco', emailsPrimaryEmail: 'zhao@notion.com', avatarUrl: - 'https://twentyhq.github.io/placeholder-images/people/image-68.png', + 'https://twentyhq.github.io/placeholder-images/founders/ivan-zhao.jpg', position: 5, createdBySource: FieldActorSource.SYSTEM, createdByWorkspaceMemberId: null,