\n \n \n \n Vaccination Card Image\n \n {vaccineFile && (\n {\n document\n .getElementById('file_input-credential-covid-vaccine-record')\n ?.click();\n }}\n aria-label=\"Edit vaccine card image\"\n >\n {EditIcon(theme.palette.system.skyBlue, '17', '17')}\n \n )}\n \n\n \n {vaccineFile?.fileType !== allowedFileTypes.pdf ? (\n
\n ) : (\n \n )}\n \n\n \n \n \n You currently have no approved physical vaccine card.\n \n \n \n {\n setVaccineFile(data);\n }}\n acceptedFileTypes={MAIN_FLOWS}\n />\n
\n \n \n \n \n Vaccination QR code/Digital Vaccine Record*\n \n {QRFile && (\n {\n document\n .getElementById(\n 'file_input-credential-covid-qr-vaccine-record',\n )\n ?.click();\n }}\n aria-label=\"Edit vaccine QR image\"\n >\n {EditIcon(theme.palette.system.skyBlue, '17', '17')}\n \n )}\n \n \n {QRFile?.fileType !== allowedFileTypes.pdf ? (\n
\n ) : (\n \n )}\n \n\n \n \n \n You currently have no approved digital vaccine card.\n \n \n \n {\n setQRFile(data);\n }}\n acceptedFileTypes={MAIN_FLOWS}\n />\n
\n \n \n \n \n *{' '}\n \n \n \n \n Provide an image of your Vaccination QR Code/Digital Vaccine Record\n from one of the following places:\n \n - State Records;
\n - Chain Records (CVS, Kroger, Rite Aid, Walgreens, etc.);
\n - Insurance Records (Aetna, UHC, Blue Cross, etc.)
\n
\n \n \n \n \n );\n};\n","import { Grid, Typography } from '@mui/material';\nimport { ErrorIcon } from 'assets/icons/Alert/ErrorIcon';\nimport React, { Component, ReactNode } from 'react';\n\ninterface Props {\n children: ReactNode;\n test?: boolean;\n}\n\ninterface State {\n error: boolean;\n errorInfo: any;\n}\n\nexport class GeneralErrorBoundary extends Component