Remove development image load

This commit is contained in:
Jason Miller
2020-12-09 12:14:11 -05:00
parent c2aa35aa02
commit 81890e972b

View File

@@ -103,16 +103,6 @@ export default class Intro extends Component<Props, State> {
); );
}); });
} }
// TODO: remove this
const demo = demos[3];
fetch(demo.url)
.then((r) => r.blob())
.then((blob) =>
this.props.onFile!(
new File([blob], demo.filename, { type: blob.type }),
),
);
} }
componentWillUnmount() { componentWillUnmount() {