diff --git a/src/components/map/MapFog.js b/src/components/map/MapFog.js index 3d1d988..7614328 100644 --- a/src/components/map/MapFog.js +++ b/src/components/map/MapFog.js @@ -239,7 +239,7 @@ function MapFog({ const state = cutAction.execute(keyBy(shapes, "id")); if (Object.keys(state).length === shapes.length) { - onShapeError("No fog found to cut"); + onShapeError("No fog to cut"); } else { onShapesCut( drawingShapes.map((shape) => ({ @@ -409,7 +409,7 @@ function MapFog({ const state = cutAction.execute(keyBy(shapes, "id")); if (Object.keys(state).length === shapes.length) { - onShapeError("No fog found to cut"); + onShapeError("No fog to cut"); } else { onShapesCut(polygonShapes); }