Fixed the issue causing the 2FA dialog to appear distorted.

pull/7628/head REL-8_9
Akshay Joshi 2024-06-25 14:46:30 +05:30
parent 9933a9a9e5
commit 7d0bbf30ec
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ const StyledBox = styled(Box)(({theme})=>({
export const ModalContent = forwardRef(({children, ...props }, ref) => { export const ModalContent = forwardRef(({children, ...props }, ref) => {
return ( return (
<StyledBox ref={ref} {...props}>{children}</StyledBox> <StyledBox style={{height: '100%'}} ref={ref} {...props}>{children}</StyledBox>
); );
}); });
ModalContent.displayName = 'ModalContent'; ModalContent.displayName = 'ModalContent';