diff --git a/src/utils/shortcuts.ts b/src/utils/shortcuts.ts index 8a33258cf..0d6eb1cf6 100644 --- a/src/utils/shortcuts.ts +++ b/src/utils/shortcuts.ts @@ -157,7 +157,7 @@ export function isMacPlatform(): boolean { } export function getDefaultInterruptShortcut(): string { - return "ctrl+shift+c"; + return isMacPlatform() ? "ctrl+c" : "ctrl+shift+c"; } export function toMenuAccelerator(value: string | null | undefined): string | null {