You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/components/report.tsx
+13-10Lines changed: 13 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -208,7 +208,7 @@ export default function PyConKenyaReport({
208
208
<pclassName="text-gray-600 leading-relaxed">
209
209
{atmosphereText
210
210
? atmosphereText
211
-
: `The conference fostered an incredibly collaborative and inclusive environment. Attendees praised the high-quality content, networking opportunities, and the strong sense of community. The event successfully bridged the gap between academia and industry, with meaningful connections formed across all experience levels.`}
211
+
: "The conference fostered an incredibly collaborative and inclusive environment. Attendees praised the high-quality content, networking opportunities, and the strong sense of community. The event successfully bridged the gap between academia and industry, with meaningful connections formed across all experience levels."}
212
212
</p>
213
213
</div>
214
214
</div>
@@ -260,13 +260,16 @@ export default function PyConKenyaReport({
260
260
<divclassName="space-y-4">
261
261
{/* Group sessions by time slot */}
262
262
{Object.entries(
263
-
day.sessions.reduce((acc,session)=>{
264
-
if(!acc[session.time]){
265
-
acc[session.time]=[];
266
-
}
267
-
acc[session.time].push(session);
268
-
returnacc;
269
-
},{}asRecord<string,Session[]>)
263
+
day.sessions.reduce(
264
+
(acc,session)=>{
265
+
if(!acc[session.time]){
266
+
acc[session.time]=[];
267
+
}
268
+
acc[session.time].push(session);
269
+
returnacc;
270
+
},
271
+
{}asRecord<string,Session[]>,
272
+
),
270
273
).map(([time,sessions])=>(
271
274
<div
272
275
key={time}
@@ -410,7 +413,7 @@ export default function PyConKenyaReport({
410
413
{statistics.students} (
411
414
{Math.round(
412
415
(statistics.students/statistics.totalAttendees)*
413
-
100
416
+
100,
414
417
)}
415
418
%)
416
419
</span>
@@ -430,7 +433,7 @@ export default function PyConKenyaReport({
0 commit comments