Skip to content

Commit 604829b

Browse files
committed
fixes errors for image build
Signed-off-by: Frédéric Noppe <frederic.noppe@l3montree.com>
1 parent 5ad1162 commit 604829b

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

src/components/Schedule.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const schedule: Array<Day> = [
8585
start: '19:00',
8686
end: '22:00',
8787
openForOthers: false,
88-
id: 6,
88+
id: 7,
8989
},
9090
],
9191
},

src/components/oss-bonn/Speaker.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ const people = [
1919
name: 'Neal H. Walfield',
2020
role: 'Co-Founder Sequoia PGP',
2121
imageUrl: '/Profil_Neal_H._Walfield.png',
22-
topic: 'Interacting with FOSS Projects: Setting and Respecting Expectations',
22+
topic:
23+
'Interacting with FOSS Projects: Setting and Respecting Expectations',
2324
pdfFile: '',
2425
},
2526
{
@@ -44,7 +45,10 @@ export default function Speaker() {
4445
className="mx-auto mt-12 grid max-w-2xl grid-cols-1 gap-6 sm:grid-cols-2 lg:mx-0 lg:max-w-none lg:grid-cols-4 lg:gap-8"
4546
>
4647
{people.map((person) => (
47-
<li key={person.name} className="rounded-2xl bg-zinc-800 px-8 py-10 text-center">
48+
<li
49+
key={person.name}
50+
className="rounded-2xl bg-zinc-800 px-8 py-10 text-center"
51+
>
4852
<Image
4953
alt={`${person.name} - ${person.role}`}
5054
src={person.imageUrl}

0 commit comments

Comments
 (0)