From e247cbef2b4332952a23edb0e581f0ff73a325b8 Mon Sep 17 00:00:00 2001 From: Zylan Date: Fri, 25 Apr 2025 12:37:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E9=A2=9C=E8=89=B2=E8=BF=87?= =?UTF-8?q?=E6=BB=A4=E9=80=BB=E8=BE=91=EF=BC=8C=E5=B0=86=E5=8F=98=E9=87=8F?= =?UTF-8?q?=E5=A3=B0=E6=98=8E=E4=BB=8Elet=E6=94=B9=E4=B8=BAconst=EF=BC=8C?= =?UTF-8?q?=E4=BB=A5=E6=8F=90=E9=AB=98=E4=BB=A3=E7=A0=81=E5=8F=AF=E8=AF=BB?= =?UTF-8?q?=E6=80=A7=E5=92=8C=E4=B8=80=E8=87=B4=E6=80=A7=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1d8ca58..47e32b6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -170,7 +170,7 @@ export default function Home() { } const selectedKeys = selectedOption.keys; const keySet = new Set(selectedKeys); - let filteredPalette = fullBeadPalette.filter(color => keySet.has(color.key)); + const filteredPalette = fullBeadPalette.filter(color => keySet.has(color.key)); const t1Color = fullBeadPalette.find(p => p.key === 'T1'); if (t1Color && !keySet.has('T1')) { if (!filteredPalette.some(p => p.key === 'T1')) {