Skip to content

Commit 153feba

Browse files
committed
Remove dead comments.
1 parent 9ec1ef5 commit 153feba

File tree

2 files changed

+0
-38
lines changed

2 files changed

+0
-38
lines changed

src/components/schedule/day.astro

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -433,11 +433,9 @@ const dateText = format(date, "eeee - do MMMM");
433433
width: 100%;
434434
}
435435
:global(body) {
436-
/*overflow-x: hidden;*/
437436
}
438437

439438
:global(select) {
440-
/*font-weight: bold;*/
441439
}
442440

443441
:global(.schedule *) {
@@ -514,12 +512,10 @@ const dateText = format(date, "eeee - do MMMM");
514512
display: inherit;
515513
}
516514
.schedule-container {
517-
/*overflow-x: auto;*/
518515
padding-bottom: 2px;
519516
}
520517

521518
.schedule-container.header {
522-
/*overflow-x: hidden;*/
523519
padding-bottom: 0;
524520
}
525521

@@ -564,7 +560,6 @@ const dateText = format(date, "eeee - do MMMM");
564560
outline: none;
565561
}
566562
.time h2 {
567-
/*font-weight: 500;*/
568563
}
569564

570565
:global(.session.poster) {
@@ -585,11 +580,9 @@ const dateText = format(date, "eeee - do MMMM");
585580
h2,
586581
{
587582
background: linear-gradient(#F8F7F6, #F2E2D3 );
588-
/*color: var(--color-text-inverted);*/
589583
padding: 4px 8px;
590584
margin-top:8px;
591585
border-radius: 10px;
592-
/*outline: 2px solid var(--color-primary);*/
593586
font-weight: bold;
594587
font-size: 0.8em;
595588
}

src/content/config.ts

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -158,37 +158,6 @@ const sessions = defineCollection({
158158
}),
159159
});
160160

161-
//const days = defineCollection({
162-
// type: "data",
163-
// schema: z.object({
164-
// rooms: z.array(z.string()),
165-
// events: z.array(
166-
// z.object({
167-
// rooms: z.array(z.string()),
168-
// event_type: z.string(),
169-
// code: z.string().optional(),
170-
// title: z.string(),
171-
// slug: z.string().optional(),
172-
// session_type: z.string().optional(), // why?
173-
// speakers: z
174-
// .array(
175-
// z.object({
176-
// code: z.string(),
177-
// name: z.string(),
178-
// website_url: z.string(),
179-
// })
180-
// )
181-
// .optional(),
182-
// tweet: z.string().optional().nullable(),
183-
// level: z.string().optional().nullable(),
184-
// start: z.string(),
185-
// website_url: z.string().optional().nullable(),
186-
// duration: z.number(),
187-
// })
188-
// ),
189-
// }),
190-
//});
191-
192161
const days = defineCollection({
193162
loader: async (): Promise<any[]> => {
194163
const schedule = await loadData(import.meta.env.EP_SCHEDULE_API);

0 commit comments

Comments
 (0)