diff --git a/src/widgets/romm/component.jsx b/src/widgets/romm/component.jsx
index eebf7a156..f8e29812e 100644
--- a/src/widgets/romm/component.jsx
+++ b/src/widgets/romm/component.jsx
@@ -23,22 +23,17 @@ export default function Component({ service }) {
}
if (response) {
- const platforms = response.PLATFORMS;
- const totalRoms = response.ROMS;
- const totalSaves = response.SAVES;
- const totalStates = response.STATES;
- const totalScreenshots = response.SCREENSHOTS;
- const totalFilesizeGB = (response.FILESIZE / (1024 ** 3)).toFixed(2);
+ const totalFilesizeGB = (response.FILESIZE / (1024 ** 3)).toFixed(2);
- return (
-
-
-
-
-
-
-
-
- );
- }
+ return (
+
+
+
+
+
+
+
+
+ );
+ }
}