FIX: Make biome happy

This commit is contained in:
Nicolás Hatcher
2024-10-25 17:55:21 +02:00
committed by Nicolás Hatcher Andrés
parent ee6a41c4f4
commit f78027247b
3 changed files with 6 additions and 5 deletions

View File

@@ -20,7 +20,7 @@ import { IronCalcIcon } from "./icons";
function App() {
const [model, setModel] = useState<Model | null>(null);
const [workbookState, setWorkbookState] = useState<WorkbookState | null>(
null
null,
);
useEffect(() => {
@@ -54,7 +54,7 @@ function App() {
if (!model || !workbookState) {
return (
<Loading>
<IronCalcIcon style={{width: 24, height: 24, marginBottom: 16}} />
<IronCalcIcon style={{ width: 24, height: 24, marginBottom: 16 }} />
<div>Loading IronCalc</div>
</Loading>
);