diff --git a/apps/client/src/common/utils/deviceUtils.ts b/apps/client/src/common/utils/deviceUtils.ts
index b72bff6d6..5155c83fa 100644
--- a/apps/client/src/common/utils/deviceUtils.ts
+++ b/apps/client/src/common/utils/deviceUtils.ts
@@ -3,6 +3,6 @@ export function isMacOS() {
return userAgent.includes('macintosh') || userAgent.includes('mac os');
}
-export const deviceAlt = isMacOS() ? '⌥' : 'Alt';
+export const deviceAlt = isMacOS() ? 'Option' : 'Alt';
-export const deviceMod = isMacOS() ? '⌘' : 'Ctrl';
+export const deviceMod = isMacOS() ? 'Cmd' : 'Ctrl';
diff --git a/apps/client/src/features/rundown/event-editor/EventEditorEmpty.tsx b/apps/client/src/features/rundown/event-editor/EventEditorEmpty.tsx
index b2e57dc70..c6dbc762b 100644
--- a/apps/client/src/features/rundown/event-editor/EventEditorEmpty.tsx
+++ b/apps/client/src/features/rundown/event-editor/EventEditorEmpty.tsx
@@ -40,7 +40,7 @@ function EventEditorEmpty() {