Skip to content

Commit 63bf6dc

Browse files
committed
add advanced quiz level, fix quiz key name
1 parent e4d74b5 commit 63bf6dc

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/content/staking/solo/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,4 +202,4 @@ To unlock and receive your entire balance back you must also complete the proces
202202
- [Step by Step: How to join the Ethereum 2.0 Testnet](https://kb.beaconcha.in/guides/tutorial-eth2-multiclient) - _Butta_
203203
- [Eth2 Slashing Prevention Tips](https://medium.com/prysmatic-labs/eth2-slashing-prevention-tips-f6faa5025f50) - _Raul Jordan 2020_
204204

205-
<QuizWidget quizKey="staking" />
205+
<QuizWidget quizKey="solo-staking" />

src/data/quizzes/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const quizzes: RawQuizzes = {
3636
questions: ["h001", "h002", "h003", "h004", "h005"],
3737
},
3838
"solo-staking": {
39-
title: "solo-staking",
39+
title: "solo",
4040
questions: ["j001", "j002", "j004", "j005", "j006", "j007", "j008"],
4141
},
4242
}
@@ -82,7 +82,7 @@ export const usingEthereumQuizzes: QuizzesSection[] = [
8282
{
8383
id: "layer-2",
8484
level: "intermediate",
85-
next: "staking",
85+
next: "solo-staking",
8686
},
8787
{
8888
id: "solo-staking",

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export interface RawQuizzes {
123123
[key: string]: RawQuiz
124124
}
125125

126-
type QuizLevel = "beginner" | "intermediate"
126+
type QuizLevel = "beginner" | "intermediate" | "advanced"
127127

128128
export type QuizzesSection = {
129129
id: string

0 commit comments

Comments
 (0)