FIX: Biome automatic "unsafe" updates

This commit is contained in:
Nicolás Hatcher
2025-11-13 19:39:01 +01:00
committed by Nicolás Hatcher Andrés
parent bc9fefcb70
commit 630f0e1baf
3 changed files with 7 additions and 9 deletions

View File

@@ -48,7 +48,7 @@ function App() {
const importedModel = Model.from_bytes(model_bytes);
localStorage.removeItem("selected");
setModel(importedModel);
} catch (e) {
} catch (_e) {
alert("Model not found, or failed to load");
}
} else if (exampleFilename) {
@@ -57,7 +57,7 @@ function App() {
const importedModel = Model.from_bytes(model_bytes);
localStorage.removeItem("selected");
setModel(importedModel);
} catch (e) {
} catch (_e) {
alert("Example file not found, or failed to load");
}
} else {