From f99d32025f5caee52c5aa85b289bc3ecc447828a Mon Sep 17 00:00:00 2001 From: p-sw Date: Tue, 4 Jun 2024 23:01:28 +0900 Subject: [PATCH] fix: use const instead of let --- packages/react/src/App.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/react/src/App.tsx b/packages/react/src/App.tsx index ea1bf5f..85bcf70 100644 --- a/packages/react/src/App.tsx +++ b/packages/react/src/App.tsx @@ -29,11 +29,11 @@ import React, { } from "react"; function buildThresholdList() { - let thresholds = []; - let numSteps = 20; + const thresholds: number[] = []; + const numSteps = 20; for (let i = 1.0; i <= numSteps; i++) { - let ratio = i / numSteps; + const ratio = i / numSteps; thresholds.push(ratio); }