Merge pull request #104 from mr-karan/master

fix: Remove root URI on frontend
This commit is contained in:
Kailash Nadh 2020-05-16 19:56:40 +05:30 committed by GitHub
commit 1e61760338
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ class Editor extends React.PureComponent {
new Delta()
.retain(range.index)
.delete(range.length)
.insert({ image: this.props.config.rootURL + uri }),
.insert({ image: uri }),
null
)
}