File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import { Box , FormLabel , Link , styled } from '@mui/material' ;
3
- import { withStyles } from '@mui/styles' ;
4
3
import { ManagedGroupMembershipEntry } from 'src/models/group' ;
5
4
import { AppDispatch } from 'src/store' ;
6
5
import { TdrState } from 'src/reducers' ;
@@ -10,10 +9,6 @@ import { connect } from 'react-redux';
10
9
import { getUserGroups } from 'src/actions' ;
11
10
import JadeDropdown from '../dataset/data/JadeDropdown' ;
12
11
13
- const styles = ( ) => ( {
14
- /* empty styles */
15
- } ) ;
16
-
17
12
const JadeLink = styled ( 'span' ) ( ( { theme } ) => theme . mixins . jadeLink ) ;
18
13
19
14
type AuthDomainProps = {
@@ -74,4 +69,4 @@ function mapStateToProps(state: TdrState) {
74
69
} ;
75
70
}
76
71
77
- export default connect ( mapStateToProps ) ( withStyles ( styles ) ( AuthDomain ) ) ;
72
+ export default connect ( mapStateToProps ) ( AuthDomain ) ;
You can’t perform that action at this time.
0 commit comments