Skip to content

Commit

Permalink
Fix for #6597 Created by field can't have null value (#6614)
Browse files Browse the repository at this point in the history
Fix for #6597
  • Loading branch information
BOHEUS authored Aug 13, 2024
1 parent ecdbe26 commit 65a961f
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ export const seedOpportunity = async (
pointOfContactId: DEV_SEED_PERSON_IDS.CHRISTOPH,
companyId: DEV_SEED_COMPANY_IDS.LINKEDIN,
createdBySource: 'MANUAL',
createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.JONY,
createdByName: 'Jony Ive',
createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM,
createdByName: 'Tim Cook',
},
{
id: DEV_SEED_OPPORTUNITY_IDS.OPPORTUNITY_2,
Expand All @@ -61,8 +61,8 @@ export const seedOpportunity = async (
pointOfContactId: DEV_SEED_PERSON_IDS.CHRISTOPHER_G,
companyId: DEV_SEED_COMPANY_IDS.FACEBOOK,
createdBySource: 'MANUAL',
createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.JONY,
createdByName: 'Jony Ive',
createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM,
createdByName: 'Tim Cook',
},
{
id: DEV_SEED_OPPORTUNITY_IDS.OPPORTUNITY_3,
Expand All @@ -75,8 +75,8 @@ export const seedOpportunity = async (
pointOfContactId: DEV_SEED_PERSON_IDS.NICHOLAS,
companyId: DEV_SEED_COMPANY_IDS.MICROSOFT,
createdBySource: 'MANUAL',
createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.JONY,
createdByName: 'Jony Ive',
createdByWorkspaceMemberId: DEV_SEED_WORKSPACE_MEMBER_IDS.TIM,
createdByName: 'Tim Cook',
},
{
id: DEV_SEED_OPPORTUNITY_IDS.OPPORTUNITY_4,
Expand Down

0 comments on commit 65a961f

Please sign in to comment.