NTP-7772 | KYC Incident | Cache API OnCreate | Policy Details Screen UI Fix (#13528)

This commit is contained in:
Prajjaval Verma
2024-11-09 01:39:11 +05:30
committed by GitHub
parent d2031c971f
commit 179801df8c
7 changed files with 31 additions and 11 deletions

View File

@@ -68,7 +68,7 @@ export const getBenefitPageData = async (
properties: {
methodName: AnalyticsFlowNameConstant.GI_RN_BENEFIT,
reason: `${error.message}, axiosError: ${error.axiosCode}`,
statusCode: error.statusCode,
statusCode: error.statusCode.toString(),
},
});
}

View File

@@ -64,7 +64,7 @@ export const getMarketBenefitComparePageData = async (
properties: {
methodName: AnalyticsFlowNameConstant.GI_RN_BENEFIT_COMPARE,
reason: `${error.message}, axiosError: ${error.axiosCode}`,
statusCode: error.statusCode,
statusCode: error.statusCode.toString(),
},
});
}

View File

@@ -64,7 +64,7 @@ export const getWaitingPeriodScreenData = async (
properties: {
methodName: AnalyticsFlowNameConstant.GI_WAITING_PERIOD,
reason: `${error.message}, axiosError: ${error.axiosCode}`,
statusCode: error.statusCode,
statusCode: error.statusCode.toString(),
},
});
}