summaryrefslogtreecommitdiff
path: root/opendc-web/opendc-web-ui/src/components/projects/ProjectAuthRow.js
diff options
context:
space:
mode:
Diffstat (limited to 'opendc-web/opendc-web-ui/src/components/projects/ProjectAuthRow.js')
-rw-r--r--opendc-web/opendc-web-ui/src/components/projects/ProjectAuthRow.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/opendc-web/opendc-web-ui/src/components/projects/ProjectAuthRow.js b/opendc-web/opendc-web-ui/src/components/projects/ProjectAuthRow.js
index 3f904061..1c1d5cd8 100644
--- a/opendc-web/opendc-web-ui/src/components/projects/ProjectAuthRow.js
+++ b/opendc-web/opendc-web-ui/src/components/projects/ProjectAuthRow.js
@@ -1,7 +1,7 @@
import classNames from 'classnames'
import React from 'react'
import ProjectActions from '../../containers/projects/ProjectActions'
-import Shapes from '../../shapes/index'
+import { Authorization } from '../../shapes/index'
import { AUTH_DESCRIPTION_MAP, AUTH_ICON_MAP } from '../../util/authorizations'
import { parseAndFormatDateTime } from '../../util/date-time'
@@ -18,7 +18,7 @@ const ProjectAuthRow = ({ projectAuth }) => (
)
ProjectAuthRow.propTypes = {
- projectAuth: Shapes.Authorization.isRequired,
+ projectAuth: Authorization.isRequired,
}
export default ProjectAuthRow