We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90f8908 commit ce3f915Copy full SHA for ce3f915
editor/src/components/sections/PanelCode.tsx
@@ -44,7 +44,7 @@ const LocalEditor: React.FC<{
44
const onCodeOutputsUpdate = useCallback(
45
debounce((outputs: MetaframeInputMap) => {
46
setCode(outputs.text);
47
- }, 500),
+ }, 100),
48
[setCode],
49
);
50
worker/index.html
@@ -547,7 +547,7 @@
547
pending = setTimeout(() => {
548
pending = null;
549
window.location.hash = hash;
550
- }, 400);
+ }, 200);
551
};
552
mp.addListener(globalThis.metapage.Metapage.DEFINITION, (event) => {
553
const url = event
0 commit comments