Skip to content

Commit 3dc3529

Browse files
committed
fix: tuple mismatch
1 parent ea31d8e commit 3dc3529

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

src/07-arrays.problem.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,9 @@ export const defaultUser: User = {
2121
id: 1,
2222
title: "How I eat so much cheese",
2323
},
24+
{
25+
id: 2,
26+
title: "Why I don't eat more vegetables",
27+
},
2428
],
2529
};

src/07-arrays.solution.1.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,9 @@ export const defaultUser: User = {
2121
id: 1,
2222
title: "How I eat so much cheese",
2323
},
24+
{
25+
id: 2,
26+
title: "Why I don't eat more vegetables",
27+
},
2428
],
2529
};

src/07-arrays.solution.2.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,9 @@ export const defaultUser: User = {
2121
id: 1,
2222
title: "How I eat so much cheese",
2323
},
24+
{
25+
id: 2,
26+
title: "Why I don't eat more vegetables",
27+
},
2428
],
2529
};

0 commit comments

Comments
 (0)