diff --git a/components/Modals/ShortcutHelpModal.tsx b/components/Modals/ShortcutHelpModal.tsx index 94686d6..cc7f2d1 100644 --- a/components/Modals/ShortcutHelpModal.tsx +++ b/components/Modals/ShortcutHelpModal.tsx @@ -1,9 +1,9 @@ -import { Modal } from "antd"; +import { Carousel, Modal } from "antd"; import { useState } from "react"; import { GlobalHotKeys, KeyMap } from "react-hotkeys"; export default function ShortcutHelpModal() { - const [visible, setVisible] = useState(true); + const [visible, setVisible] = useState(false); function handleToggleModal() { setVisible((pv) => !pv); @@ -38,7 +38,22 @@ export default function ShortcutHelpModal() { visible={visible} onCancel={handleToggleModal} onOk={handleToggleModal} - > + > + +
+

1

+
+
+

2

+
+
+

3

+
+
+

4

+
+
+ ); }