fix; args and fmt

This commit is contained in:
mahiro72 2025-12-17 02:23:15 +09:00
parent dbde0e72a3
commit a5c81d7207
1 changed files with 6 additions and 6 deletions

View File

@ -21,12 +21,12 @@ export default function Chrome() {
return; return;
} }
try { try {
await persist(settings, pythonSource); await persist(settings, pythonSource);
} catch (error) { } catch (error) {
// eslint-disable-next-line no-console // eslint-disable-next-line no-console
console.error("Failed to share playground", error); console.error("Failed to share playground", error);
} }
}, [pythonSource, settings]); }, [pythonSource, settings]);
if (initPromise.current == null) { if (initPromise.current == null) {