FIX: Make biome happy

This commit is contained in:
Nicolás Hatcher
2025-02-25 23:47:02 +01:00
committed by Nicolás Hatcher Andrés
parent 8ed88e1445
commit 7bc563ef29
3 changed files with 3 additions and 3 deletions

View File

@@ -2,12 +2,12 @@ import type { Model } from "@ironcalc/wasm";
import { styled } from "@mui/material";
import { Fx } from "../../icons";
import { theme } from "../../theme";
import Editor from "../Editor/Editor";
import {
COLUMN_WIDTH_SCALE,
ROW_HEIGH_SCALE,
} from "../WorksheetCanvas/constants";
import { FORMULA_BAR_HEIGHT } from "../constants";
import Editor from "../Editor/Editor";
import type { WorkbookState } from "../workbookState";
type FormulaBarProps = {

View File

@@ -1,6 +1,7 @@
import { type Model, columnNameFromNumber } from "@ironcalc/wasm";
import { styled } from "@mui/material/styles";
import { useEffect, useLayoutEffect, useRef, useState } from "react";
import Editor from "../Editor/Editor";
import {
COLUMN_WIDTH_SCALE,
LAST_COLUMN,
@@ -15,7 +16,6 @@ import {
NAVIGATION_HEIGHT,
TOOLBAR_HEIGHT,
} from "../constants";
import Editor from "../Editor/Editor";
import type { Cell } from "../types";
import { AreaType, type WorkbookState } from "../workbookState";
import CellContextMenu from "./CellContextMenu";

View File

@@ -1,11 +1,11 @@
import type { Model } from "@ironcalc/wasm";
import { type PointerEvent, type RefObject, useCallback, useRef } from "react";
import { isInReferenceMode } from "../Editor/util";
import type WorksheetCanvas from "../WorksheetCanvas/worksheetCanvas";
import {
headerColumnWidth,
headerRowHeight,
} from "../WorksheetCanvas/worksheetCanvas";
import { isInReferenceMode } from "../Editor/util";
import type { Cell } from "../types";
import { rangeToStr } from "../util";
import type { WorkbookState } from "../workbookState";