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(), );