diff --git a/src/screens/Profile/IDCardImageCapture.tsx b/src/screens/Profile/IDCardImageCapture.tsx index fede50f7..327cc1b9 100644 --- a/src/screens/Profile/IDCardImageCapture.tsx +++ b/src/screens/Profile/IDCardImageCapture.tsx @@ -75,7 +75,7 @@ const IDCardImageCapture = () => { - Capture your image to create an ID card for customer’s reference. + Capture your selfie to create an ID card for customer’s reference. diff --git a/src/screens/Profile/ReviewIDImage.tsx b/src/screens/Profile/ReviewIDImage.tsx index 71819fce..bb9cc8d6 100644 --- a/src/screens/Profile/ReviewIDImage.tsx +++ b/src/screens/Profile/ReviewIDImage.tsx @@ -26,7 +26,7 @@ const ReviewIDImage: React.FC = ({ imageUri, retakeImage, closeM }; return ( - + diff --git a/src/screens/notifications/NotificationItem.tsx b/src/screens/notifications/NotificationItem.tsx index 2f77ebec..7f5736a4 100644 --- a/src/screens/notifications/NotificationItem.tsx +++ b/src/screens/notifications/NotificationItem.tsx @@ -108,6 +108,14 @@ const NotificationItem: React.FC = ({ data }) => { navigateToScreen(BOTTOM_TAB_ROUTES.VisitPlan); return; } + if ( + templateName === NotificationTypes.AGENT_ID_APPROVED_TEMPLATE || + templateName === NotificationTypes.AGENT_ID_REJECTED_TEMPLATE + ) { + navigateToScreen(BOTTOM_TAB_ROUTES.VisitPlan); + navigateToScreen(BOTTOM_TAB_ROUTES.Profile); + return; + } if (!collectionCaseId || !clickable) { return; } diff --git a/src/screens/notifications/NotificationTemplate.tsx b/src/screens/notifications/NotificationTemplate.tsx index 4aebb7be..c24c0907 100644 --- a/src/screens/notifications/NotificationTemplate.tsx +++ b/src/screens/notifications/NotificationTemplate.tsx @@ -195,7 +195,7 @@ const NotificationTemplate: React.FC = ({ data }) => ID card rejected! - Your ID card has been rejected. Please upload your picture again for the ID card + Your ID card has been rejected. Please upload your selfie again for the ID card );