Skip to content

Commit

Permalink
chore: sort props
Browse files Browse the repository at this point in the history
  • Loading branch information
spawnia committed Jan 24, 2025
1 parent 430a69b commit ec12982
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Plate/EmptyWell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ export function EmptyWell<TCoordinateSystem extends CoordinateSystem>({
coordinateSystem,
position,
}: {
position: number;
coordinateSystem: TCoordinateSystem;
position: number;
}) {
const row = rowForPosition(position, PLATE_FLOW, coordinateSystem);
const column = columnForPosition(position, PLATE_FLOW, coordinateSystem);
Expand Down
8 changes: 4 additions & 4 deletions src/Plate/FilledWell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ import { columnForPosition, rowForPosition } from './utils';
import { GENERAL_WELL_STYLE } from './wellUtils';

export function FilledWell<TCoordinateSystem extends CoordinateSystem>({
isDraggable,
well,
coordinateSystem,
isDraggable,
position,
well,
}: {
well: PlateWell<TCoordinateSystem>;
coordinateSystem: TCoordinateSystem;
position: number;
isDraggable: boolean;
position: number;
well: PlateWell<TCoordinateSystem>;
}) {
const data = {
coordinates: {
Expand Down
4 changes: 2 additions & 2 deletions src/Plate/Well.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ export function Well<TCoordinateSystem extends CoordinateSystem>({
position,
well,
}: {
position: number;
well: Maybe<PlateWell<TCoordinateSystem>>;
coordinateSystem: TCoordinateSystem;
isDraggable: boolean;
position: number;
well: Maybe<PlateWell<TCoordinateSystem>>;
}) {
return well?.content ? (
<FilledWell
Expand Down

0 comments on commit ec12982

Please sign in to comment.