Skip to content

Commit de1fddb

Browse files
committed
fix ci failing
1 parent 33e566a commit de1fddb

3 files changed

Lines changed: 22 additions & 18 deletions

File tree

bun.lock

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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
@@ -208,7 +208,7 @@ export default function PyConKenyaReport({
208208
<p className="text-gray-600 leading-relaxed">
209209
{atmosphereText
210210
? 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."}
212212
</p>
213213
</div>
214214
</div>
@@ -260,13 +260,16 @@ export default function PyConKenyaReport({
260260
<div className="space-y-4">
261261
{/* Group sessions by time slot */}
262262
{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-
return acc;
269-
}, {} as Record<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+
return acc;
270+
},
271+
{} as Record<string, Session[]>,
272+
),
270273
).map(([time, sessions]) => (
271274
<div
272275
key={time}
@@ -410,7 +413,7 @@ export default function PyConKenyaReport({
410413
{statistics.students} (
411414
{Math.round(
412415
(statistics.students / statistics.totalAttendees) *
413-
100
416+
100,
414417
)}
415418
%)
416419
</span>
@@ -430,7 +433,7 @@ export default function PyConKenyaReport({
430433
{Math.round(
431434
(statistics.professionals /
432435
statistics.totalAttendees) *
433-
100
436+
100,
434437
)}
435438
%)
436439
</span>

0 commit comments

Comments
 (0)