From b84aeb8bb9198c215ca6884ad3323e814c5af40f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Hatcher?= Date: Sun, 24 Nov 2024 22:57:37 +0100 Subject: [PATCH] FIX: Make Biome happy --- webapp/src/App.tsx | 2 +- webapp/src/AppComponents/rpc.ts | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/webapp/src/App.tsx b/webapp/src/App.tsx index 0e5752f..c8069f9 100644 --- a/webapp/src/App.tsx +++ b/webapp/src/App.tsx @@ -24,7 +24,7 @@ import { IronCalcIcon } from "./icons"; function App() { const [model, setModel] = useState(null); const [workbookState, setWorkbookState] = useState( - null + null, ); useEffect(() => { diff --git a/webapp/src/AppComponents/rpc.ts b/webapp/src/AppComponents/rpc.ts index 9eb28da..b301d93 100644 --- a/webapp/src/AppComponents/rpc.ts +++ b/webapp/src/AppComponents/rpc.ts @@ -21,7 +21,9 @@ export async function get_model(modelHash: string): Promise { ); } -export async function get_documentation_model(filename: string): Promise { +export async function get_documentation_model( + filename: string, +): Promise { return new Uint8Array( await (await fetch(`/models/${filename}.ic`)).arrayBuffer(), );