From 6b0ad64830181727a75bf8a2c07feccaeb60537f Mon Sep 17 00:00:00 2001 From: Taras Kurilo Date: Mon, 4 Nov 2024 12:22:44 -0500 Subject: [PATCH] edm 287 remove dob and va file number from sob (#32817) * remove dob and va file number from sob * remove feature flag --- .../components/UserInfoSection.jsx | 20 ++----------------- .../feature-toggles/featureFlagNames.json | 2 +- 2 files changed, 3 insertions(+), 19 deletions(-) diff --git a/src/applications/post-911-gib-status/components/UserInfoSection.jsx b/src/applications/post-911-gib-status/components/UserInfoSection.jsx index fcb1a4e14329..7c3ab5ad8330 100644 --- a/src/applications/post-911-gib-status/components/UserInfoSection.jsx +++ b/src/applications/post-911-gib-status/components/UserInfoSection.jsx @@ -1,15 +1,11 @@ import React from 'react'; import PropTypes from 'prop-types'; -import { - formatDateShort, - formatDateParsedZoneLong, -} from 'platform/utilities/date'; -import InfoPair from './InfoPair'; +import { formatDateShort } from 'platform/utilities/date'; +import InfoPair from './InfoPair'; import { formatPercent, - formatVAFileNumber, formatMonthDayFields, benefitEndDateExplanation, notQualifiedWarning, @@ -21,7 +17,6 @@ function UserInfoSection({ enrollmentData = {}, showCurrentAsOfAlert }) { const percentageBenefit = formatPercent(enrollmentData.percentageBenefit) || 'unavailable'; const fullName = `${enrollmentData.firstName} ${enrollmentData.lastName}`; - let currentAsOfAlert; if (showCurrentAsOfAlert) { currentAsOfAlert = ( @@ -100,17 +95,6 @@ function UserInfoSection({ enrollmentData = {}, showCurrentAsOfAlert }) { id="gibs-full-name" additionalClass="section-line" /> - -