From 6e32d555e63af7f0b6606cb33c4229bd297f98a6 Mon Sep 17 00:00:00 2001 From: mihretue Date: Tue, 1 Sep 2026 07:34:32 +0000 Subject: [PATCH] fix(exam): show EXAM_PAID as "Exam Paid" in the queue label map MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The revert of this label was lost when the branch was reset, so the back office kept rendering "Eligible to Register" — a status name nobody recognised, saying less than the plain one it replaced. The status names the fact the application records; the Register button carries the action. --- libs/api/src/lib/features/licensing/licensing.helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/api/src/lib/features/licensing/licensing.helpers.ts b/libs/api/src/lib/features/licensing/licensing.helpers.ts index c2396408c..4b39320d1 100644 --- a/libs/api/src/lib/features/licensing/licensing.helpers.ts +++ b/libs/api/src/lib/features/licensing/licensing.helpers.ts @@ -88,7 +88,7 @@ export const STATUS_LABELS: Record = { EXAM_PAYMENT_PENDING: 'Exam Fee Due', // Nobody assigns a date any more — the fee clearing is what makes the // candidate eligible to register for a published sitting themselves. - EXAM_PAID: 'Eligible to Register', + EXAM_PAID: 'Exam Paid', EXAM_SCHEDULED: 'Exam Scheduled', EXAM_PASSED: 'Exam Passed', EXAM_FAILED: 'Exam Not Passed',