Updated PlaceholderLayout style to be default light if theme empty

• Updated:
- PlaceholderLayout style to be default light if theme empty
This commit is contained in:
mgabdev 2020-11-04 13:52:15 -06:00
parent 82778ddad0
commit d2bba43916

@ -14,7 +14,7 @@ class PlaceholderLayout extends React.PureComponent {
viewBox,
} = this.props
const isLight = ['light', 'white'].indexOf(theme) > -1
const isLight = ['light', 'white', ''].indexOf(theme) > -1
const title = intl.formatMessage(messages.loading)
const backgroundColor = !isLight ? '#555' : '#f3f3f3'
const foregroundColor = !isLight ? '#888' : '#ecebeb'