diff --git a/src/widgets/romm/component.jsx b/src/widgets/romm/component.jsx index 5b36922ea..3a2c297dc 100644 --- a/src/widgets/romm/component.jsx +++ b/src/widgets/romm/component.jsx @@ -18,8 +18,18 @@ export default function Component({ service }) { ); } - if (responseError) { - return ; + if (!response) { + + return ( + + + + + + + + + ); } if (response) { @@ -28,11 +38,11 @@ export default function Component({ service }) { return ( - - - - - + + + + + ); }