Skip to content

Commit

Permalink
Merge pull request #451 from AppQuality/integrate-shortcut-tooltip
Browse files Browse the repository at this point in the history
fix: correct shortcut key for observation in PlayerShortCut component
  • Loading branch information
d-beezee authored Nov 29, 2024
2 parents 86e5243 + e2f1609 commit 68a7b9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stories/player/shortcuts/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const PlayerShortCut = ({
case "backward":
return [<ArrowLeft />];
case "observation":
return ["s"];
return ["S"];
default:
throw new Error(`Invalid type ${type}`);
}
Expand Down

0 comments on commit 68a7b9e

Please sign in to comment.