From f98460737cff1253aeadeeddc753d8a555f7bca8 Mon Sep 17 00:00:00 2001 From: cprice11 Date: Mon, 14 Oct 2024 17:22:06 -0600 Subject: [PATCH] single var to const --- experiences/bus-bunching/controls/lib/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/experiences/bus-bunching/controls/lib/index.tsx b/experiences/bus-bunching/controls/lib/index.tsx index 24c4665..c5bcf64 100644 --- a/experiences/bus-bunching/controls/lib/index.tsx +++ b/experiences/bus-bunching/controls/lib/index.tsx @@ -84,7 +84,7 @@ const ControlsComponent = () => { ); const busStopSymbol = (index: number) => { - let stopStyle = { + const stopStyle = { ...buttonStyle, color: stopColors[index % stopColors.length], };