Skip to content
Snippets Groups Projects
Commit 2795da62 authored by Alexandru Munteanu's avatar Alexandru Munteanu
Browse files

Fix a typo

parent c86f656f
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,7 @@ const uploadSuccess = () => ({ ...@@ -57,7 +57,7 @@ const uploadSuccess = () => ({
const createFileData = (file, type, fragmentId) => { const createFileData = (file, type, fragmentId) => {
const data = new FormData() const data = new FormData()
data.append('fileType', type) data.append('fileType', type)
data.append('framentId', fragmentId) data.append('fragmentId', fragmentId)
data.append('file', file) data.append('file', file)
return { return {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment