Skip to content

Commit 209e519

Browse files
committed
eslint fixer
1 parent a6370b6 commit 209e519

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/inputs/RoleEditor/RoleEditor.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ const useStyles = makeStyles((theme) => ({
1616
marginLeft: 0,
1717
},
1818
agentName: {
19-
overflow:'hidden',
20-
textOverflow: 'ellipsis'
19+
overflow: 'hidden',
20+
textOverflow: 'ellipsis',
2121
},
2222
rolesEditor: {
2323
display: 'flex',
@@ -27,7 +27,7 @@ const useStyles = makeStyles((theme) => ({
2727
nameGroup: {
2828
display: 'flex',
2929
flexDirection: 'column',
30-
maxWidth: '80%'
30+
maxWidth: '80%',
3131
},
3232
}));
3333
export const RoleEditor = ({
@@ -49,8 +49,8 @@ export const RoleEditor = ({
4949
<div className={classes.nameGroup}>
5050
<Tooltip title={agentName} arrow>
5151
<Typography className={classes.agentName} data-cy="role-editor-agent-name" variant="body1">
52-
{agentName}
53-
</Typography>
52+
{agentName}
53+
</Typography>
5454
</Tooltip>
5555
{helperText != null && (
5656
<Typography data-cy="role-editor-helper-text" variant="body2" color="textSecondary">

0 commit comments

Comments
 (0)