diff --git a/packages/mq-playground/src/Playground.tsx b/packages/mq-playground/src/Playground.tsx
index 3e22e64c5..462b10e4c 100644
--- a/packages/mq-playground/src/Playground.tsx
+++ b/packages/mq-playground/src/Playground.tsx
@@ -21,6 +21,10 @@ import {
VscWordWrap,
VscMap,
VscSettingsGear,
+ VscPlay,
+ VscSymbolMethod,
+ VscLinkExternal,
+ VscCopy,
} from "react-icons/vsc";
import { initVimMode } from "monaco-vim";
import { EXAMPLE_CATEGORIES, EXAMPLES } from "./examples";
@@ -1003,7 +1007,15 @@ export const Playground = () => {
} else {
document.documentElement.style.colorScheme = theme;
}
- }, [vimModeEnabled, fontSize, theme, lineNumbers, tabSize, minimapEnabled, wordWrap]);
+ }, [
+ vimModeEnabled,
+ fontSize,
+ theme,
+ lineNumbers,
+ tabSize,
+ minimapEnabled,
+ wordWrap,
+ ]);
// Add keyboard shortcut for save (Ctrl+S / Cmd+S)
useEffect(() => {
@@ -1499,12 +1511,15 @@ export const Playground = () => {
)}
-