From 105f103fdab3bd4f6370cdace2fa231d5994e69c Mon Sep 17 00:00:00 2001 From: "Siddhesh.More" Date: Sat, 5 Oct 2024 20:41:26 +0530 Subject: [PATCH] IsAppNotificationEnabled value refactored --- src/Pages/Investor_Management/InvestorDetails/ProfileView.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Pages/Investor_Management/InvestorDetails/ProfileView.jsx b/src/Pages/Investor_Management/InvestorDetails/ProfileView.jsx index 26a67b7..1c219c3 100644 --- a/src/Pages/Investor_Management/InvestorDetails/ProfileView.jsx +++ b/src/Pages/Investor_Management/InvestorDetails/ProfileView.jsx @@ -149,7 +149,7 @@ const ProfileView = () => { }, { label: "App Notification", - value: foundObject?.IsAppNotificationEnabled === 1 ? "Yes" : "No", + value: foundObject?.IsAppNotificationEnabled === true ? "Yes" : "No", type: "text", isRequired: true, section: "Personal Details",