Skip to content

Commit

Permalink
Fix onboard shortcut display (#1544)
Browse files Browse the repository at this point in the history
  • Loading branch information
goosewobbler authored May 4, 2023
1 parent b9891f3 commit bc54b8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/onboard/App/Slides/Access/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { getDisplayShortcut } from '../../../../../resources/keyboard'

const Access = ({ setTitle, setProceed, platform }) => {
const { modifierKeys, shortcutKey } = getDisplayShortcut(platform, store('main.shortcuts.summon'))
const keyboardShortcut = `${modifierKeys} + ${shortcutKey}`
const keyboardShortcut = modifierKeys.concat(shortcutKey).join(' + ')
const [shortcutActivated, setShortcutActivated] = useState(false)
const [trayOpen, setTrayOpen] = useState(store('tray.open'))

Expand Down

0 comments on commit bc54b8a

Please sign in to comment.