diff --git a/docs/src/components/kbd.tsx b/docs/src/components/kbd.tsx index b4de641b0..69fee9ebf 100644 --- a/docs/src/components/kbd.tsx +++ b/docs/src/components/kbd.tsx @@ -28,7 +28,11 @@ function convertKey(platform: Platform, key: string): [any, string, boolean] { } } if (key == "Ctrl") { - return ["⌃", "Control", true]; + if (platform === "mac") { + return ["⌃", "Control", true]; + } else { + return ["Ctrl", "Control", false]; + } } if (key == "Shift") { return ["⇧", "Shift", true];