Skip to content
Closed
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
3 changes: 2 additions & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
export default function Home() {
const title: number = "hello";

Check failure on line 2 in app/page.tsx

View workflow job for this annotation

GitHub Actions / install / lint / typecheck / build / smoke

Type 'string' is not assignable to type 'number'.
return (
<main>
<h1>hello</h1>
<h1>{title}</h1>
<p>Something small is on the way.</p>
</main>
);
Expand Down
Loading