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.
This commit is contained in:
2026-06-03 10:57:01 +08:00
parent b819894e75
commit 3cd87ce014
4 changed files with 4 additions and 4 deletions

View File

@@ -270,7 +270,7 @@ export function DrawResultsListScreen() {
</div> </div>
) : null} ) : null}
{items?.map((row) => ( {items?.slice(1).map((row) => (
<Link <Link
key={row.draw_no} key={row.draw_no}
href={`/results/${encodeURIComponent(row.draw_no)}`} href={`/results/${encodeURIComponent(row.draw_no)}`}

View File

@@ -413,7 +413,7 @@
"posted": "Success", "posted": "Success",
"pending_reconcile": "Pending reconciliation", "pending_reconcile": "Pending reconciliation",
"reversed": "Reversed", "reversed": "Reversed",
"manually_processed": "Manually processed" "manually_processed": "Case closed"
}, },
"error": { "error": {
"401": "Login expired. Please return and enter again.", "401": "Login expired. Please return and enter again.",

View File

@@ -413,7 +413,7 @@
"posted": "सफल", "posted": "सफल",
"pending_reconcile": "मिलान बाँकी", "pending_reconcile": "मिलान बाँकी",
"reversed": "रिभर्स भयो", "reversed": "रिभर्स भयो",
"manually_processed": "हातैले प्रक्रिया भयो" "manually_processed": "केस बन्द भयो"
}, },
"error": { "error": {
"401": "लगइन समाप्त भयो। कृपया फर्केर फेरि प्रवेश गर्नुहोस्।", "401": "लगइन समाप्त भयो। कृपया फर्केर फेरि प्रवेश गर्नुहोस्।",

View File

@@ -414,7 +414,7 @@
"posted": "成功", "posted": "成功",
"pending_reconcile": "待对账", "pending_reconcile": "待对账",
"reversed": "已冲正", "reversed": "已冲正",
"manually_processed": "已人工处理" "manually_processed": "已结案"
}, },
"error": { "error": {
"401": "登录已失效,请返回重新进入。", "401": "登录已失效,请返回重新进入。",