diff --git a/RN-UI-LIB b/RN-UI-LIB index 76786d25..f8795144 160000 --- a/RN-UI-LIB +++ b/RN-UI-LIB @@ -1 +1 @@ -Subproject commit 76786d25a3f3440ae8ecac2e4823b3c7eb3c91c9 +Subproject commit f8795144b2fabd54d75cb5135caf7b0897d5b63f diff --git a/src/action/profileActions.ts b/src/action/profileActions.ts index bbf32846..7ce5bd06 100644 --- a/src/action/profileActions.ts +++ b/src/action/profileActions.ts @@ -48,7 +48,7 @@ export const getSelfieDocument = .then((res) => { const { documents, agencyName, agencyCode } = res.data; if (res.data?.documents?.[0]) { - const { originalDocumentUri, optimizedDocumentUri, approvalStatus, comment, referenceId } = + const { originalDocumentUri, optimizedDocumentUri, approvalStatus, comment } = documents?.[0] || {}; dispatch( setOriginalImageDetails({ @@ -58,7 +58,6 @@ export const getSelfieDocument = agencyCode: agencyCode || '', optimizedImageUri: optimizedDocumentUri || '', comment: comment || '', - documentRefId: referenceId || '' }) ); @@ -73,7 +72,6 @@ export const getSelfieDocument = agencyCode: agencyCode || '', comment: '', approvalStatus: ImageApprovalStatus.NOT_INITIATED, - documentRefId: '' }) ); } diff --git a/src/common/BlockerScreen.tsx b/src/common/BlockerScreen.tsx index 0db0f5a1..44882c1d 100644 --- a/src/common/BlockerScreen.tsx +++ b/src/common/BlockerScreen.tsx @@ -223,7 +223,7 @@ const BlockerScreen = (props: IBlockerScreen) => { }); return ; } - if (IdCardBlockStatus[approvalStatus as keyof typeof IdCardBlockStatus] && isFieldAgent && !GLOBAL.IS_IMPERSONATED) { + if (IdCardBlockStatus[approvalStatus as keyof typeof IdCardBlockStatus] && isFieldAgent) { return ( <> diff --git a/src/reducer/profileSlice.ts b/src/reducer/profileSlice.ts index 8afcb48d..972e9732 100644 --- a/src/reducer/profileSlice.ts +++ b/src/reducer/profileSlice.ts @@ -29,7 +29,6 @@ const initialState = { optimizedImageUri: '', showApprovedModal: false, isLoading: false, - documentRefId: '' }; export const profileSlice = createSlice({ @@ -47,7 +46,6 @@ export const profileSlice = createSlice({ agencyName, agencyCode, comment, - documentRefId } = action.payload; state.originalImageUri = originalImageUri; state.approvalStatus = approvalStatus; @@ -55,7 +53,6 @@ export const profileSlice = createSlice({ state.agencyCode = agencyCode; state.optimizedImageUri = optimizedImageUri; state.comment = comment; - state.documentRefId = documentRefId; }, setIsUploadingImage: (state, action) => { state.isUploadingImage = action.payload; diff --git a/src/screens/Profile/index.tsx b/src/screens/Profile/index.tsx index e9f77db8..9647b8e8 100644 --- a/src/screens/Profile/index.tsx +++ b/src/screens/Profile/index.tsx @@ -38,15 +38,13 @@ const Profile: React.FC = () => { const supportLink = useAppSelector((state) => state.config.data?.supportLink); const isTeamLead = useAppSelector((state) => state.user.isTeamLead); const referenceId = useAppSelector((state) => state.user.user?.referenceId); - const documentRefId = useAppSelector((state) => state.profile?.documentRefId); - const showAttendanceBanner = useAppSelector( (state) => state.user?.agentAttendance?.showAttendanceBanner ); const originalImageUri = useAppSelector((state) => state.profile?.originalImageUri); const cacheDirectory = RNFS.CachesDirectoryPath; - const cacheFilePath = `${cacheDirectory}/${documentRefId}_${name}.jpg`; + const cacheFilePath = `${cacheDirectory}/${phoneNumber}_${name}.jpg`; useFocusEffect( React.useCallback(() => { @@ -110,7 +108,7 @@ const Profile: React.FC = () => { />