Skip to content

Commit

Permalink
fix: remove duplication
Browse files Browse the repository at this point in the history
  • Loading branch information
ferferga authored Oct 10, 2024
1 parent eaf4ec3 commit 86909d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
11 changes: 2 additions & 9 deletions src/data/people.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const sharedPeopleData = {
treatment: 'Prof. Dr. ir.',
job: 'Consolidation chair',
image: Reijers,
institution: 'University of Utrecht',
institution: 'Utrecht Univerity',
location: 'Utrecht, The Netherlands',
email: '[email protected]',
bio: `
Expand Down Expand Up @@ -144,7 +144,6 @@ const sharedPeopleData = {
treatment: 'Dr.',
institution: 'University of Utrecht',
location: 'Utrecht, The Netherlands',
job: 'Community Manager',
bio: `
Iris Beerepoot is an Assistant Professor in the Process Science group at the
Department of Information & Computing Sciences at Utrecht University.
Expand Down Expand Up @@ -193,13 +192,7 @@ export const steeringCommittee: Record<string, ConferenceMemberData> = {
location: 'Ulm, Germany',
email: '[email protected]'
},
'Hajo Reijers': {
treatment,
image: Reijers,
institution: 'Utrecht Univerity',
location: 'Utrecht, The Netherlands',
email: '[email protected]'
},
'Hajo Reijers': sharedPeopleData['Hajo Reijers'],
'Stefanie Rinderle-Ma': {
treatment,
job: 'Vice-Chair',
Expand Down
1 change: 1 addition & 0 deletions src/pages/conference/chairs.astro
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const classes = {
id={encodeURIComponent(section.toLowerCase().replace(' ', '-'))}
testimonials={Object.entries(chairs).map(([name, info]) => ({
name,
job: info.job,
testimonial: info.bio,
items: [
...(info.institution
Expand Down

0 comments on commit 86909d1

Please sign in to comment.