File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,11 @@ const FlexContainer = styled.div<{ loading?: boolean }>`
1818 opacity: ${ ( { loading } ) => ( loading ? 0.5 : 1 ) } ;
1919` ;
2020
21+ const FixedBody = styled ( Modal . Body ) `
22+ overflow: hidden;
23+ padding-bottom: 0;
24+ ` ;
25+
2126export const WorkspaceSettings = ( ) => {
2227 const { activeWorkspace } = useAppSelector ( ( state ) => state . navigation ) ;
2328 const { t } = useTranslation ( ) ;
@@ -40,9 +45,9 @@ export const WorkspaceSettings = () => {
4045 { isModalOpen && (
4146 < Modal onClose = { ( ) => setIsModalOpen ( false ) } >
4247 < Modal . Header > { t ( '__WORKSPACE_SETTINGS_MODAL_TITLE' ) } </ Modal . Header >
43- < Modal . Body >
48+ < FixedBody >
4449 < AddNewMemberInput />
45- </ Modal . Body >
50+ </ FixedBody >
4651 < Modal . Body style = { { paddingTop : 0 } } >
4752 < FlexContainer loading = { isLoading || isFetching } >
4853 { data ?. items . map ( ( user ) => (
You can’t perform that action at this time.
0 commit comments