refactor: downloadUrl => downloadURL

This commit is contained in:
Ben Warzeski
2021-11-22 11:09:24 -05:00
parent bfcbb50b57
commit 7a7c0f6b22
9 changed files with 13 additions and 13 deletions

View File

@@ -47,7 +47,7 @@ const initialState = {
* response: {
* text: '',
* files: [{
* downloadUrl: '',
* downloadURL: '',
* description: '',
* name: '',
* }],

View File

@@ -25,7 +25,7 @@ const getFiles = (submissionUUID) => {
files.push({
name: fileName,
description: descriptiveText(fileName),
downloadUrl: `/download/${fileName}/`,
downloadURL: `/download/${fileName}/`,
});
}
return files;