diff --git a/examples/images/index.js b/examples/images/index.js index 4870f09bf..f654c4035 100644 --- a/examples/images/index.js +++ b/examples/images/index.js @@ -16,12 +16,10 @@ import { Map } from 'immutable' const NODES = { image: (props) => { const { node, state } = props - const { data } = node - const isActive = state.isFocused && state.blocks.includes(node) - const src = data.get('src') + const src = node.data.get('src') return ( - + ) }