diff --git a/app/components/List/Placeholder.tsx b/app/components/List/Placeholder.tsx index 1c952d5fd..98d352f93 100644 --- a/app/components/List/Placeholder.tsx +++ b/app/components/List/Placeholder.tsx @@ -14,7 +14,7 @@ type Props = { body?: PlaceholderTextProps; }; -const ListPlaceHolder = ({ count, className, header, body }: Props) => { +const Placeholder = ({ count, className, header, body }: Props) => { return ( {times(count || 2, (index) => ( @@ -31,4 +31,4 @@ const Item = styled(Flex)` padding: 10px 0; `; -export default ListPlaceHolder; +export default Placeholder; diff --git a/app/components/PaginatedList.tsx b/app/components/PaginatedList.tsx index c2198ea95..0e8e24169 100644 --- a/app/components/PaginatedList.tsx +++ b/app/components/PaginatedList.tsx @@ -165,7 +165,9 @@ class PaginatedList extends React.Component> { return ( this.props.loading || ( - +
+ +
) );