diff --git a/VAMobile/src/components/CommonErrorComponents/CallHelpCenter.tsx b/VAMobile/src/components/CommonErrorComponents/CallHelpCenter.tsx index 6daeab11c43..c9fd9329a1d 100644 --- a/VAMobile/src/components/CommonErrorComponents/CallHelpCenter.tsx +++ b/VAMobile/src/components/CommonErrorComponents/CallHelpCenter.tsx @@ -77,6 +77,7 @@ const CallHelpCenter: FC = ({ a11yLabel={a11yLabelID(callPhone || t('8006982411'))} displayedText={callPhone ? undefined : displayedTextPhoneNumber(t('8006982411'))} phone={callPhone ? callPhone : t('8006982411')} + variant={'base'} /> diff --git a/VAMobile/src/components/CommonErrorComponents/DowntimeError.tsx b/VAMobile/src/components/CommonErrorComponents/DowntimeError.tsx index 9dc441a9217..b9a0651cee2 100644 --- a/VAMobile/src/components/CommonErrorComponents/DowntimeError.tsx +++ b/VAMobile/src/components/CommonErrorComponents/DowntimeError.tsx @@ -62,6 +62,7 @@ const DowntimeError: FC = ({ screenID }) => { displayedText={displayedTextPhoneNumber(t('8006982411'))} phone={t('8006982411')} a11yLabel={a11yLabelID(t('8006982411'))} + variant={'base'} /> diff --git a/VAMobile/src/components/WaygateWrapper.tsx b/VAMobile/src/components/WaygateWrapper.tsx index b46a5d94211..c2628e17768 100644 --- a/VAMobile/src/components/WaygateWrapper.tsx +++ b/VAMobile/src/components/WaygateWrapper.tsx @@ -61,6 +61,7 @@ export const WaygateWrapper: FC = ({ children, waygateName, displayedText={displayedTextPhoneNumber(phoneNumber)} phone={phoneNumber} a11yLabel={a11yLabelID(phoneNumber)} + variant={'base'} /> diff --git a/VAMobile/src/screens/BenefitsScreen/ClaimsScreen/ClaimDetailsScreen/ClaimStatus/ClaimFileUpload/TakePhotos/TakePhotos.tsx b/VAMobile/src/screens/BenefitsScreen/ClaimsScreen/ClaimDetailsScreen/ClaimStatus/ClaimFileUpload/TakePhotos/TakePhotos.tsx index 548854ca3bb..5dd3464d04b 100644 --- a/VAMobile/src/screens/BenefitsScreen/ClaimsScreen/ClaimDetailsScreen/ClaimStatus/ClaimFileUpload/TakePhotos/TakePhotos.tsx +++ b/VAMobile/src/screens/BenefitsScreen/ClaimsScreen/ClaimDetailsScreen/ClaimStatus/ClaimFileUpload/TakePhotos/TakePhotos.tsx @@ -84,6 +84,7 @@ function TakePhotos({ navigation, route }: TakePhotosProps) { url={LINK_URL_GO_TO_VA_GOV} text={t('goToVAGov')} a11yLabel={a11yLabelVA(t('goToVAGov'))} + variant={'base'} /> diff --git a/VAMobile/src/screens/HealthScreen/CernerAlert/CernerAlert.tsx b/VAMobile/src/screens/HealthScreen/CernerAlert/CernerAlert.tsx index 75e10e1ef41..24661dfc39b 100644 --- a/VAMobile/src/screens/HealthScreen/CernerAlert/CernerAlert.tsx +++ b/VAMobile/src/screens/HealthScreen/CernerAlert/CernerAlert.tsx @@ -63,6 +63,7 @@ function CernerAlert() { text: t('goToMyVAHealth'), a11yLabel: a11yLabelVA(t('goToMyVAHealth')), testID: 'goToMyVAHealthTestID', + variant: 'base', } return ( diff --git a/VAMobile/src/screens/HealthScreen/Pharmacy/PrescriptionDetails/PrescriptionsDetailsBanner.tsx b/VAMobile/src/screens/HealthScreen/Pharmacy/PrescriptionDetails/PrescriptionsDetailsBanner.tsx index 0dc2a8dee80..e253efbacac 100644 --- a/VAMobile/src/screens/HealthScreen/Pharmacy/PrescriptionDetails/PrescriptionsDetailsBanner.tsx +++ b/VAMobile/src/screens/HealthScreen/Pharmacy/PrescriptionDetails/PrescriptionsDetailsBanner.tsx @@ -57,6 +57,7 @@ function PrescriptionsDetailsBanner() { phone={t('5418307563')} displayedText={`${t('automatedPhoneSystem')} ${displayedTextPhoneNumber(t('5418307563'))}`} a11yLabel={`${t('automatedPhoneSystem')} ${getNumberAccessibilityLabelFromString(t('5418307563'))}`} + variant={'base'} /> ) diff --git a/VAMobile/src/screens/HealthScreen/Pharmacy/PrescriptionHistory/PrescriptionHistory.tsx b/VAMobile/src/screens/HealthScreen/Pharmacy/PrescriptionHistory/PrescriptionHistory.tsx index 9c230d4f9d8..2fa34cad4a3 100644 --- a/VAMobile/src/screens/HealthScreen/Pharmacy/PrescriptionHistory/PrescriptionHistory.tsx +++ b/VAMobile/src/screens/HealthScreen/Pharmacy/PrescriptionHistory/PrescriptionHistory.tsx @@ -401,6 +401,7 @@ function PrescriptionHistory({ navigation, route }: PrescriptionHistoryProps) { url: LINK_URL_GO_TO_PATIENT_PORTAL, text: t('goToMyVAHealth'), a11yLabel: a11yLabelVA(t('goToMyVAHealth')), + variant: 'base', } return ( diff --git a/VAMobile/src/screens/HealthScreen/Pharmacy/PrescriptionHistory/PrescriptionHistoryNoPrescriptions.tsx b/VAMobile/src/screens/HealthScreen/Pharmacy/PrescriptionHistory/PrescriptionHistoryNoPrescriptions.tsx index 979970d31aa..e24d17bd2a4 100644 --- a/VAMobile/src/screens/HealthScreen/Pharmacy/PrescriptionHistory/PrescriptionHistoryNoPrescriptions.tsx +++ b/VAMobile/src/screens/HealthScreen/Pharmacy/PrescriptionHistory/PrescriptionHistoryNoPrescriptions.tsx @@ -64,7 +64,11 @@ function PrescriptionHistoryNoPrescriptions() { {t('prescriptions.notFound.bullets.ifYouThink')} - + diff --git a/VAMobile/src/screens/HealthScreen/SecureMessaging/CernerAlertSM/CernerAlertSM.tsx b/VAMobile/src/screens/HealthScreen/SecureMessaging/CernerAlertSM/CernerAlertSM.tsx index ea362cf0656..daae09217dd 100644 --- a/VAMobile/src/screens/HealthScreen/SecureMessaging/CernerAlertSM/CernerAlertSM.tsx +++ b/VAMobile/src/screens/HealthScreen/SecureMessaging/CernerAlertSM/CernerAlertSM.tsx @@ -60,6 +60,7 @@ function CernerAlertSM() { text: t('goToMyVAHealth'), a11yLabel: a11yLabelVA(t('goToMyVAHealth')), testID: 'goToMyVAHealthTestID', + variant: 'base', } return ( diff --git a/VAMobile/src/screens/HealthScreen/Vaccines/NoVaccineRecords/NoVaccineRecords.tsx b/VAMobile/src/screens/HealthScreen/Vaccines/NoVaccineRecords/NoVaccineRecords.tsx index 14b569943cd..84919151f63 100644 --- a/VAMobile/src/screens/HealthScreen/Vaccines/NoVaccineRecords/NoVaccineRecords.tsx +++ b/VAMobile/src/screens/HealthScreen/Vaccines/NoVaccineRecords/NoVaccineRecords.tsx @@ -19,7 +19,11 @@ function NoVaccineRecords() { {t('noVaccineRecords.alert.text.2')} - + ) diff --git a/VAMobile/src/screens/PaymentsScreen/PaymentHistory/NoPayments/NoPaymentsScreen.tsx b/VAMobile/src/screens/PaymentsScreen/PaymentHistory/NoPayments/NoPaymentsScreen.tsx index 5fb2bfe52bb..bae42b1e48b 100644 --- a/VAMobile/src/screens/PaymentsScreen/PaymentHistory/NoPayments/NoPaymentsScreen.tsx +++ b/VAMobile/src/screens/PaymentsScreen/PaymentHistory/NoPayments/NoPaymentsScreen.tsx @@ -32,7 +32,11 @@ function NoPaymentsScreen() { accessibilityLabel={t('payments.noPayments.body.2.a11yLabel')}> {t('payments.noPayments.body.2')} - + )