diff --git a/src/Plate/EmptyWell.tsx b/src/Plate/EmptyWell.tsx index 0eebfb7..9a674d7 100644 --- a/src/Plate/EmptyWell.tsx +++ b/src/Plate/EmptyWell.tsx @@ -12,8 +12,8 @@ export function EmptyWell({ coordinateSystem, position, }: { - position: number; coordinateSystem: TCoordinateSystem; + position: number; }) { const row = rowForPosition(position, PLATE_FLOW, coordinateSystem); const column = columnForPosition(position, PLATE_FLOW, coordinateSystem); diff --git a/src/Plate/FilledWell.tsx b/src/Plate/FilledWell.tsx index ddde775..7546274 100644 --- a/src/Plate/FilledWell.tsx +++ b/src/Plate/FilledWell.tsx @@ -10,15 +10,15 @@ import { columnForPosition, rowForPosition } from './utils'; import { GENERAL_WELL_STYLE } from './wellUtils'; export function FilledWell({ - isDraggable, - well, coordinateSystem, + isDraggable, position, + well, }: { - well: PlateWell; coordinateSystem: TCoordinateSystem; - position: number; isDraggable: boolean; + position: number; + well: PlateWell; }) { const data = { coordinates: { diff --git a/src/Plate/Well.tsx b/src/Plate/Well.tsx index b192a3d..b982759 100644 --- a/src/Plate/Well.tsx +++ b/src/Plate/Well.tsx @@ -11,10 +11,10 @@ export function Well({ position, well, }: { - position: number; - well: Maybe>; coordinateSystem: TCoordinateSystem; isDraggable: boolean; + position: number; + well: Maybe>; }) { return well?.content ? (