From 3cd87ce014edf0cf31fbed80caf4107edd8f786f Mon Sep 17 00:00:00 2001 From: kang Date: Wed, 3 Jun 2026 10:57:01 +0800 Subject: [PATCH] fix: update draw results list to skip the first item and modify translation for processed status - Adjusted the draw results list to skip the first item in the display. - Updated translations for "manually_processed" in English, Nepali, and Chinese to "Case closed" and its equivalents. --- src/features/results/draw-results-list-screen.tsx | 2 +- src/i18n/locales/en/player.json | 2 +- src/i18n/locales/ne/player.json | 2 +- src/i18n/locales/zh/player.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/features/results/draw-results-list-screen.tsx b/src/features/results/draw-results-list-screen.tsx index 2a021b6..49a85c6 100644 --- a/src/features/results/draw-results-list-screen.tsx +++ b/src/features/results/draw-results-list-screen.tsx @@ -270,7 +270,7 @@ export function DrawResultsListScreen() { ) : null} - {items?.map((row) => ( + {items?.slice(1).map((row) => (