diff options
Diffstat (limited to 'src/components/options/KeybindComponent.tsx')
-rw-r--r-- | src/components/options/KeybindComponent.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/options/KeybindComponent.tsx b/src/components/options/KeybindComponent.tsx index 4d49c7f4..180d57f2 100644 --- a/src/components/options/KeybindComponent.tsx +++ b/src/components/options/KeybindComponent.tsx @@ -1,9 +1,8 @@ import * as React from "react"; import { createRoot, Root } from 'react-dom/client'; import Config from "../../config"; -import { Keybind } from "../../types"; import KeybindDialogComponent from "./KeybindDialogComponent"; -import { keybindEquals, keybindToString, formatKey } from "../../utils/configUtils"; +import { formatKey, Keybind, keybindEquals, keybindToString } from "@ajayyy/maze-utils/lib/config"; export interface KeybindProps { option: string; |