From a5c81d7207d1496bf3e70b15fa39d46a4257208c Mon Sep 17 00:00:00 2001 From: mahiro72 Date: Wed, 17 Dec 2025 02:23:15 +0900 Subject: [PATCH] fix; args and fmt --- playground/ruff/src/Editor/Chrome.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/playground/ruff/src/Editor/Chrome.tsx b/playground/ruff/src/Editor/Chrome.tsx index 7c8cc9b4a0..1f4f94548f 100644 --- a/playground/ruff/src/Editor/Chrome.tsx +++ b/playground/ruff/src/Editor/Chrome.tsx @@ -21,12 +21,12 @@ export default function Chrome() { return; } - try { - await persist(settings, pythonSource); - } catch (error) { - // eslint-disable-next-line no-console - console.error("Failed to share playground", error); - } + try { + await persist(settings, pythonSource); + } catch (error) { + // eslint-disable-next-line no-console + console.error("Failed to share playground", error); + } }, [pythonSource, settings]); if (initPromise.current == null) {