Skip to content

Commit

Permalink
edm 287 remove dob and va file number from sob (#32817)
Browse files Browse the repository at this point in the history
* remove dob and va file number from sob

* remove feature flag
  • Loading branch information
flex2016 authored Nov 4, 2024
1 parent ab255d3 commit 6b0ad64
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 19 deletions.
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -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 = (
Expand Down Expand Up @@ -100,17 +95,6 @@ function UserInfoSection({ enrollmentData = {}, showCurrentAsOfAlert }) {
id="gibs-full-name"
additionalClass="section-line"
/>
<InfoPair
label="Date of birth"
name="dateOfBirth"
value={formatDateParsedZoneLong(enrollmentData.dateOfBirth)}
additionalClass="section-line"
/>
<InfoPair
label="VA file number"
value={formatVAFileNumber(enrollmentData.vaFileNumber)}
additionalClass="section-line"
/>
<InfoPair
label="Regional Processing Office"
value={enrollmentData.regionalProcessingOffice}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
"mebExclusionPeriodEnabled": "meb_exclusion_period_enabled",
"merge1995And5490": "merge_1995_and_5490",
"mgibVerificationsMaintenance": "mgib_verifications_maintenance",
"mhvAcceleratedDeliveryAllergiesEnabled":"mhv_accelerated_delivery_allergies_enabled",
"mhvAcceleratedDeliveryAllergiesEnabled": "mhv_accelerated_delivery_allergies_enabled",
"mhvIntegrationMedicalRecordsToPhase1": "mhv_integration_medical_records_to_phase_1",
"mhvInterstitialEnabled": "mhv_interstitial_enabled",
"mhvLandingPagePersonalization": "mhv_landing_page_personalization",
Expand Down

0 comments on commit 6b0ad64

Please sign in to comment.