diff --git a/app/components/upload-list.js b/app/components/upload-list.js
index b065007..ac9aba2 100644
--- a/app/components/upload-list.js
+++ b/app/components/upload-list.js
@@ -3,35 +3,49 @@ import uploadsQuery from '../queries/uploads'
const UploadList = ({data: {uploads}}) => {
return (
-
-
-
- | Name |
- Type |
- Size |
- Path |
-
-
-
- {uploads.map(({id, name, type, size, path}) => (
-
- | {name} |
- {type} |
- {size} |
- {path} |
+
+
+
+
+ | Name |
+ Type |
+ Size |
+ Path |
- ))}
-
+
+
+ {uploads.map(({id, name, type, size, path}) => (
+
+ | {name} |
+ {type} |
+ {size} |
+ {path} |
+
+ ))}
+
+
-
+
)
}