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" /> - -