File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ export const Modal: React.FC<ModalProps> = ({
175175 { ...props }
176176 >
177177 { title && (
178- < ModalStyledHeader data-testid = "modal-header" >
178+ < ModalStyledHeader className = 'modal-header' data-testid = "modal-header" >
179179 { headerIcon && < Box data-testid = "modal-header-icon" > { headerIcon } </ Box > }
180180 < Typography component = { 'div' } variant = "h6" data-testid = "modal-title" >
181181 { title }
@@ -199,7 +199,7 @@ export const Modal: React.FC<ModalProps> = ({
199199 ) }
200200 </ CustomTooltip >
201201 ) }
202- < CloseBtn onClick = { closeModal } data-testid = "modal-close-btn" >
202+ < CloseBtn onClick = { closeModal } className = 'modal-close-btn' data-testid = "modal-close-btn" >
203203 < CloseIcon { ...iconLarge } fill = "#fff" > </ CloseIcon >
204204 </ CloseBtn >
205205 </ div >
@@ -214,7 +214,7 @@ export const Modal: React.FC<ModalProps> = ({
214214
215215export const ModalFooter : React . FC < ModalFooterProps > = ( { helpText, children, variant } ) => {
216216 return (
217- < StyledFooter variant = { variant } hasHelpText = { ! ! helpText } >
217+ < StyledFooter className = 'modal-footer' variant = { variant } hasHelpText = { ! ! helpText } >
218218 { helpText && (
219219 // <CustomTooltip title={helpText} variant="standard" placement="top">
220220 // <IconButton>
You can’t perform that action at this time.
0 commit comments