Skip to content

Commit 9875184

Browse files
committed
refactor: remove empty styles from AuthDomain
1 parent ba5ebef commit 9875184

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/components/snapshot/AuthDomain.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React from 'react';
22
import { Box, FormLabel, Link, styled } from '@mui/material';
3-
import { withStyles } from '@mui/styles';
43
import { ManagedGroupMembershipEntry } from 'src/models/group';
54
import { AppDispatch } from 'src/store';
65
import { TdrState } from 'src/reducers';
@@ -10,10 +9,6 @@ import { connect } from 'react-redux';
109
import { getUserGroups } from 'src/actions';
1110
import JadeDropdown from '../dataset/data/JadeDropdown';
1211

13-
const styles = () => ({
14-
/* empty styles */
15-
});
16-
1712
const JadeLink = styled('span')(({ theme }) => theme.mixins.jadeLink);
1813

1914
type AuthDomainProps = {
@@ -74,4 +69,4 @@ function mapStateToProps(state: TdrState) {
7469
};
7570
}
7671

77-
export default connect(mapStateToProps)(withStyles(styles)(AuthDomain));
72+
export default connect(mapStateToProps)(AuthDomain);

0 commit comments

Comments
 (0)