diff --git a/src/App.js b/src/App.js index 3d49b4a..d5ed673 100644 --- a/src/App.js +++ b/src/App.js @@ -203,10 +203,14 @@ function App() { productVariant={product.Variant} productCharacteristics={product.Characteristics} rightComponent={ - window.open(product.Url)} - /> + product.Url === "" ? ( + <> + ) : ( + window.open(product.Url)} + /> + ) } /> )