Skip to content

Commit e7543a4

Browse files
committed
fix results not getting reset
1 parent e81cbad commit e7543a4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/japanese/exercises/kana-typer/KanaTyper.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ const game = makeAutoObservable({
3838
this.enabledKanas = Object.values(kanaTables)
3939
.flatMap((it) => Object.values(it))
4040
.flatMap((it) => it);
41+
this.allTypedKanas = [];
4142
this.kanasPrev = [];
4243
this.kanas = this.generateKanas(0);
4344
this.kanasNext = this.generateKanas(this.kanas.last()!.idx + 1);

0 commit comments

Comments
 (0)