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
@@ -200,7 +200,7 @@ export default function PyConKenyaReport({
200
200
<pclassName="text-gray-600 leading-relaxed">
201
201
{atmosphereText
202
202
? atmosphereText
203
-
: `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.`}
203
+
: "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."}
204
204
</p>
205
205
</div>
206
206
</div>
@@ -252,13 +252,16 @@ export default function PyConKenyaReport({
252
252
<divclassName="space-y-4">
253
253
{/* Group sessions by time slot */}
254
254
{Object.entries(
255
-
day.sessions.reduce((acc,session)=>{
256
-
if(!acc[session.time]){
257
-
acc[session.time]=[];
258
-
}
259
-
acc[session.time].push(session);
260
-
returnacc;
261
-
},{}asRecord<string,Session[]>)
255
+
day.sessions.reduce(
256
+
(acc,session)=>{
257
+
if(!acc[session.time]){
258
+
acc[session.time]=[];
259
+
}
260
+
acc[session.time].push(session);
261
+
returnacc;
262
+
},
263
+
{}asRecord<string,Session[]>,
264
+
),
262
265
).map(([time,sessions])=>(
263
266
<div
264
267
key={time}
@@ -402,7 +405,7 @@ export default function PyConKenyaReport({
402
405
{statistics.students} (
403
406
{Math.round(
404
407
(statistics.students/statistics.totalAttendees)*
405
-
100
408
+
100,
406
409
)}
407
410
%)
408
411
</span>
@@ -422,7 +425,7 @@ export default function PyConKenyaReport({
0 commit comments