fix : remove TAN from the box logic

This commit is contained in:
Sibin Sabu 2025-08-09 12:30:04 +05:30
parent 11a9f2013e
commit 01516866b7

View File

@ -930,7 +930,7 @@ const winLabels = allRows.map(row => {
let numbersStr = ''; let numbersStr = '';
// 🎯 FOR, QUI, TAN logic with box check // 🎯 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(','); const actualNumbers = displayNumbers.filter(n => n !== '#' && n !== '-').join(',');
if (row.numbers.includes('#') || row.isBoxed) { // ✅ box condition if (row.numbers.includes('#') || row.isBoxed) { // ✅ box condition
numbersStr = `${actualNumbers} - ${actualNumbers}`; numbersStr = `${actualNumbers} - ${actualNumbers}`;