Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kentis committed Mar 8, 2022
1 parent 7804f69 commit 3788319
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Grid/Grid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export const Grid: FC<GridProps> = ({
const [arrowItems, setArrowItems] = useState(initialArrowItems ?? []);
const [classicArrowItems, setClassicArrowItems] = useState<
Array<ClassicArrowItemType>
>(initialArrowItems as ClassicArrowItemType[] ?? []);
>((initialArrowItems as ClassicArrowItemType[]) ?? []);
const [occupiedCells, setOccupiedCells] = useState<Array<OccupiedCell>>([]);
const [boxStartIndex, setBoxStartIndex] = useState<number | null>(null);
const [isDragging, setIsDragging] = useState(false);
Expand Down

0 comments on commit 3788319

Please sign in to comment.