From 23b0432bb2a0abb156405cd063138d14a3f64533 Mon Sep 17 00:00:00 2001 From: Mitchell McCaffrey Date: Sun, 7 Feb 2021 21:53:29 +1100 Subject: [PATCH] Fix unused vars --- src/contexts/GridContext.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/contexts/GridContext.js b/src/contexts/GridContext.js index 13830a4..88f872c 100644 --- a/src/contexts/GridContext.js +++ b/src/contexts/GridContext.js @@ -2,6 +2,7 @@ import React, { useContext } from "react"; import Vector2 from "../helpers/Vector2"; import Size from "../helpers/Size"; +// eslint-disable-next-line no-unused-vars import { getGridPixelSize, getCellPixelSize, Grid } from "../helpers/grid"; /**