Skip to content

Commit a480210

Browse files
committed
Fix type errors
1 parent 5ece414 commit a480210

File tree

5 files changed

+3
-7
lines changed

5 files changed

+3
-7
lines changed

src/app/conf/2023/_data.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,6 @@ async function getSchedule(): Promise<ScheduleSession[]> {
7777
return result
7878
}
7979

80-
// @ts-expect-error -- fixme
8180
export const speakers = await getSpeakers()
8281

83-
// @ts-expect-error -- fixme
8482
export const schedule = await getSchedule()

src/app/conf/2024/_data.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,6 @@ async function getSchedule(): Promise<ScheduleSession[]> {
7777
return result
7878
}
7979

80-
// @ts-expect-error -- fixme
8180
export const speakers = await getSpeakers()
8281

83-
// @ts-expect-error -- fixme
8482
export const schedule = await getSchedule()

src/app/conf/2025/schedule/[id]/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import { NavbarPlaceholder } from "../../components/navbar"
1313
import { BackLink } from "../_components/back-link"
1414
import { Tag } from "@/app/conf/_design-system/tag"
1515
import { eventsColors, getEventTitle, HERO_MARQUEE_ITEMS } from "../../utils"
16-
import { PinIcon } from "../../pixelarticons/pin-icon"
17-
import { CalendarIcon } from "../../pixelarticons/calendar-icon"
16+
import { PinIcon } from "@/app/conf/_design-system/pixelarticons/pin-icon"
17+
import { CalendarIcon } from "@/app/conf/_design-system/pixelarticons/calendar-icon"
1818
import { SpeakerCard } from "../../components/speaker-card"
1919
import { Anchor } from "@/app/conf/_design-system/anchor"
2020
import { MarqueeRows } from "../../components/marquee-rows"

src/get-github-info.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ async function main() {
88

99
const githubStats: Record<string, unknown> = {}
1010

11-
// @ts-expect-error
1211
for (const [index, filePath] of filePaths.entries()) {
1312
const content = await fs.readFile(filePath, "utf8")
1413
const { data } = grayMatter(content)

tsconfig.tsbuildinfo

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)