From 01516866b72a2950ca9fbaebc0f3d1ad319d6d92 Mon Sep 17 00:00:00 2001 From: Sibin Sabu Date: Sat, 9 Aug 2025 12:30:04 +0530 Subject: [PATCH] fix : remove TAN from the box logic --- .../app/components/touch-pad-menu/touch-pad-menu.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/btc-UI/src/app/components/touch-pad-menu/touch-pad-menu.component.ts b/btc-UI/src/app/components/touch-pad-menu/touch-pad-menu.component.ts index 4c31dbb..dd6b0ee 100755 --- a/btc-UI/src/app/components/touch-pad-menu/touch-pad-menu.component.ts +++ b/btc-UI/src/app/components/touch-pad-menu/touch-pad-menu.component.ts @@ -930,7 +930,7 @@ const winLabels = allRows.map(row => { let numbersStr = ''; // 🎯 FOR, QUI, TAN logic with box check - if (['FOR', 'QUI', 'TAN'].includes(row.label)) { + if (['FOR', 'QUI'].includes(row.label)) { const actualNumbers = displayNumbers.filter(n => n !== '#' && n !== '-').join(','); if (row.numbers.includes('#') || row.isBoxed) { // ✅ box condition numbersStr = `${actualNumbers} - ${actualNumbers}`;