From bc573a19dc6b420250d46e24bd60fee240b6e251 Mon Sep 17 00:00:00 2001 From: Meric Dagli Date: Sun, 21 Jul 2024 15:13:00 -0700 Subject: [PATCH] Removing label next the first step --- src/components/play/PlayUI.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/play/PlayUI.js b/src/components/play/PlayUI.js index 6f74674..4054794 100644 --- a/src/components/play/PlayUI.js +++ b/src/components/play/PlayUI.js @@ -640,7 +640,7 @@ class PlayUI extends Component { if (layer.createdBy !== this.props.user.id) { layerLabelString = "" } - layerGraphic.layerLabel = this.container.plain(layerLabelString) + // hiding label = layerGraphic.layerLabel = this.container.plain(layerLabelString) layerGraphic.firstStep = null; for (let step of layer.steps) { const x = Math.round(layerDiameter / 2 + radius * Math.cos(angle) - stepDiameter / 2) + xOffset;