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;
}
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) {