Skip to content

Commit ceeb84a

Browse files
committed
style: fix linter issues
1 parent 8e30450 commit ceeb84a

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/authz-module/components/TableCells.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ const NameCell = ({ row }: CellProps) => {
5656
</span>
5757
);
5858
}
59-
return <>{row.original.fullName || row.original.username || ''}</>;
59+
return <span>{row.original.fullName || row.original.username || ''}</span>;
6060
};
6161

6262
const ViewActionCell = ({ row }: CellProps) => {

src/authz-module/roles-permissions/library/constants.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
import { PermissionMetadata, ResourceMetadata, Role, RoleMetadata } from 'types';
1+
import {
2+
PermissionMetadata, ResourceMetadata, Role, RoleMetadata,
3+
} from 'types';
24
import {
35
Group, CollectionsBookmark, Notes, AutoAwesomeMosaic,
46
} from '@openedx/paragon/icons';

0 commit comments

Comments
 (0)