diff --git a/app/src/components/layout/sidebarRight/simulation/Simulations.tsx b/app/src/components/layout/sidebarRight/simulation/Simulations.tsx
index 5b375a7..1280693 100644
--- a/app/src/components/layout/sidebarRight/simulation/Simulations.tsx
+++ b/app/src/components/layout/sidebarRight/simulation/Simulations.tsx
@@ -153,54 +153,73 @@ const Simulations: React.FC = () => {
/>
{products.length > 1 && (
- <>
-
handleRemoveProduct(product.productId)}
- >
-
-
-
-
-
- {openObjects && events.map((event, index) =>
)}
-
- >
- )}
-
- {selectedAsset && (
-
- {
- if (option === "Add to Product") {
- handleAddEventToProduct({
- event: getEventByModelUuid(selectedAsset.modelUuid),
- addEvent,
- selectedProduct,
- clearSelectedAsset
- });
- } else {
- handleRemoveEventFromProduct();
- }
- }}
- />
-
+ handleRemoveProduct(product.productId)}
+ >
+
+
)}
))}
+ handleResize(e, productsContainerRef)}
+ >
+
+
+
+
+
+
+
+ {openObjects &&
+ events.map((event, index) =>
)}
+
+
+
+
+ Need to Compare Layout?
+
+
+ Click 'Compare' to review and analyze the layout
+ differences between them.
+
+
+
+
+ {selectedAsset && (
+
+ {
+ if (option === "Add to Product") {
+ handleAddEventToProduct({
+ event: getEventByModelUuid(selectedAsset.modelUuid),
+ addEvent,
+ selectedProduct,
+ clearSelectedAsset
+ });
+ } else {
+ handleRemoveEventFromProduct();
+ }
+ }}
+ />
+
+ )}
)
};