Skip to content

Commit 93da1e0

Browse files
Veronicandemorodneyosodo
authored andcommitted
fix ci failing
1 parent 161f8e2 commit 93da1e0

2 files changed

Lines changed: 21 additions & 18 deletions

File tree

src/components/nav-bar.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export default function Navbar1() {
123123
navigationMenuTriggerStyle,
124124
buttonVariants({
125125
variant: "ghost",
126-
})
126+
}),
127127
)}
128128
href="/"
129129
>
@@ -142,7 +142,7 @@ export default function Navbar1() {
142142
<li key={item.title}>
143143
<a
144144
className={cn(
145-
"flex select-none gap-4 rounded-md p-3 leading-none no-underline outline-hidden transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground"
145+
"flex select-none gap-4 rounded-md p-3 leading-none no-underline outline-hidden transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground",
146146
)}
147147
href={item.url}
148148
>
@@ -171,7 +171,7 @@ export default function Navbar1() {
171171
<li key={item.title}>
172172
<a
173173
className={cn(
174-
"flex select-none gap-4 rounded-md p-3 leading-none no-underline outline-hidden transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground"
174+
"flex select-none gap-4 rounded-md p-3 leading-none no-underline outline-hidden transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground",
175175
)}
176176
href={item.url}
177177
>
@@ -200,7 +200,7 @@ export default function Navbar1() {
200200
navigationMenuTriggerStyle,
201201
buttonVariants({
202202
variant: "ghost",
203-
})
203+
}),
204204
)}
205205
href="/sponsors"
206206
>
@@ -279,7 +279,7 @@ export default function Navbar1() {
279279
<a
280280
key={item.title}
281281
className={cn(
282-
"flex select-none gap-4 rounded-md p-3 leading-none outline-hidden transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground"
282+
"flex select-none gap-4 rounded-md p-3 leading-none outline-hidden transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground",
283283
)}
284284
href={item.url}
285285
>
@@ -302,7 +302,7 @@ export default function Navbar1() {
302302
<a
303303
key={item.title}
304304
className={cn(
305-
"flex select-none gap-4 rounded-md p-3 leading-none outline-hidden transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground"
305+
"flex select-none gap-4 rounded-md p-3 leading-none outline-hidden transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground",
306306
)}
307307
href={item.url}
308308
>
@@ -328,7 +328,7 @@ export default function Navbar1() {
328328
buttonVariants({
329329
variant: "ghost",
330330
}),
331-
"justify-start text-muted-foreground"
331+
"justify-start text-muted-foreground",
332332
)}
333333
href="/terms-and-conditions"
334334
>
@@ -339,7 +339,7 @@ export default function Navbar1() {
339339
buttonVariants({
340340
variant: "ghost",
341341
}),
342-
"justify-start text-muted-foreground"
342+
"justify-start text-muted-foreground",
343343
)}
344344
href="/privacy-policy"
345345
>

src/components/report.tsx

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ export default function PyConKenyaReport({
200200
<p className="text-gray-600 leading-relaxed">
201201
{atmosphereText
202202
? 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."}
204204
</p>
205205
</div>
206206
</div>
@@ -252,13 +252,16 @@ export default function PyConKenyaReport({
252252
<div className="space-y-4">
253253
{/* Group sessions by time slot */}
254254
{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-
return acc;
261-
}, {} as Record<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+
return acc;
262+
},
263+
{} as Record<string, Session[]>,
264+
),
262265
).map(([time, sessions]) => (
263266
<div
264267
key={time}
@@ -402,7 +405,7 @@ export default function PyConKenyaReport({
402405
{statistics.students} (
403406
{Math.round(
404407
(statistics.students / statistics.totalAttendees) *
405-
100
408+
100,
406409
)}
407410
%)
408411
</span>
@@ -422,7 +425,7 @@ export default function PyConKenyaReport({
422425
{Math.round(
423426
(statistics.professionals /
424427
statistics.totalAttendees) *
425-
100
428+
100,
426429
)}
427430
%)
428431
</span>

0 commit comments

Comments
 (0)