Remove use of LoadingIndicator
This commit is contained in:
parent
6d5d0df1c0
commit
c3e04ecf87
3 changed files with 1 additions and 9 deletions
|
@ -3,7 +3,6 @@
|
|||
*/
|
||||
import React from 'react';
|
||||
|
||||
import { LoadingIndicator } from './LoadingIndicator';
|
||||
import { Message } from './propTypes/Message';
|
||||
|
||||
interface Props {
|
||||
|
@ -33,7 +32,7 @@ export class MediaGridItem extends React.Component<Props, {}> {
|
|||
const { message } = this.props;
|
||||
|
||||
if (!message.objectURL) {
|
||||
return <LoadingIndicator />;
|
||||
return null;
|
||||
}
|
||||
|
||||
return (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue