Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/verify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const BASE = process.env.BASE ?? "http://localhost:3000";
type CheckResult = {
name: string;
ok: boolean;
msg?: string;
msg?: string | undefined;
};

const results: CheckResult[] = [];
Expand Down
8 changes: 4 additions & 4 deletions src/lib/og.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ export const OG_CONTENT_TYPE = "image/png";

export function renderOgImage(props: {
title: string;
description?: string;
eyebrow?: string;
description?: string | undefined;
eyebrow?: string | undefined;
}) {
return new ImageResponse(
<OgCard
Expand All @@ -25,8 +25,8 @@ function OgCard({
eyebrow
}: {
title: string;
description?: string;
eyebrow?: string;
description?: string | undefined;
eyebrow?: string | undefined;
}) {
return (
<div
Expand Down
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
Expand Down
Loading