From 841579468a4665c39ba55393ae45e64349f0f4f2 Mon Sep 17 00:00:00 2001 From: estifanos Date: Sat, 22 Aug 2026 06:09:44 +0000 Subject: [PATCH] feat: add claim application functionality to the license review page --- .../license-review/pages/LicenseReviewPage/index.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/backoffice/src/app/features/license-review/pages/LicenseReviewPage/index.tsx b/apps/backoffice/src/app/features/license-review/pages/LicenseReviewPage/index.tsx index c26ec2cc8..166b512eb 100644 --- a/apps/backoffice/src/app/features/license-review/pages/LicenseReviewPage/index.tsx +++ b/apps/backoffice/src/app/features/license-review/pages/LicenseReviewPage/index.tsx @@ -533,11 +533,11 @@ export function LicenseReviewPage() { try { switch (action.id) { case "claim": - // Usually fired from the queue, but an officer can also open an - // unclaimed application directly and claim it from here. + // Usually fired from the queue, but an officer who opened an + // unclaimed application directly claims it from here. await run( () => claimApplication(id).unwrap(), - t("review.done.claim", "Application claimed"), + t("review.done.claim", "Claimed — the application is now yours"), ); break; case "complete-review":