Skip to content

Commit

Permalink
fix: fixed lacking key in Keyboard
Browse files Browse the repository at this point in the history
  • Loading branch information
jlumbroso committed Mar 6, 2024
1 parent 9271bd9 commit baaf7c4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/components/Keyboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ function Keyboard() {
{keys1.map((key) => {
return (
<Key
key={key}
keyVal={key}
status={letterStatus.get(key) || LetterStatus.Unknown}
/>
Expand All @@ -66,6 +67,7 @@ function Keyboard() {
{keys2.map((key) => {
return (
<Key
key={key}
keyVal={key}
status={letterStatus.get(key) || LetterStatus.Unknown}
/>
Expand All @@ -77,6 +79,7 @@ function Keyboard() {
{keys3.map((key) => {
return (
<Key
key={key}
keyVal={key}
status={letterStatus.get(key) || LetterStatus.Unknown}
/>
Expand Down

0 comments on commit baaf7c4

Please sign in to comment.