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:
@@ -270,7 +270,7 @@ export function DrawResultsListScreen() {
|
||||
</div>
|
||||
) : null}
|
||||
|
||||
{items?.map((row) => (
|
||||
{items?.slice(1).map((row) => (
|
||||
<Link
|
||||
key={row.draw_no}
|
||||
href={`/results/${encodeURIComponent(row.draw_no)}`}
|
||||
|
||||
Reference in New Issue
Block a user