diff --git a/src/pages/Organizations/screens/OrganizationsList.jsx b/src/pages/Organizations/screens/OrganizationsList.jsx index 2ebb50c33b..57c6c742cb 100644 --- a/src/pages/Organizations/screens/OrganizationsList.jsx +++ b/src/pages/Organizations/screens/OrganizationsList.jsx @@ -8,6 +8,7 @@ import { import { I18n, i18nMark } from '@lingui/react'; import { t } from '@lingui/macro'; import { + Card, PageSection, PageSectionVariants, } from '@patternfly/react-core'; @@ -195,46 +196,48 @@ class OrganizationsList extends Component { return ( - - - {({ i18n }) => ( -
    - { results.map(o => ( - this.onSelect(o.id)} - /> - ))} -
- )} -
- - { loading ?
loading...
: '' } - { error ?
error
: '' } + + + + {({ i18n }) => ( +
    + { results.map(o => ( + this.onSelect(o.id)} + /> + ))} +
+ )} +
+ + { loading ?
loading...
: '' } + { error ?
error
: '' } +
);