Handle mode: 'none' in keybindings (#12717)

GitOrigin-RevId: 77d040352b1de2311f663a8b33bd0d20d79a30ae
This commit is contained in:
Alf Eaton
2023-04-25 08:05:18 +00:00
committed by Copybot
parent 4bb582bdd8
commit 8537a7a5d0
@@ -198,6 +198,10 @@ export const keybindings = () => {
export const setKeybindings = async (
selectedKeybindings = 'default'
): Promise<TransactionSpec> => {
if (selectedKeybindings === 'none') {
selectedKeybindings = 'default'
}
const selectedOption = options.find(
option => option.name === selectedKeybindings
)