diff --git a/web/src/components/product/ProductSelectionPage.tsx b/web/src/components/product/ProductSelectionPage.tsx index 9c97951717..c24135c712 100644 --- a/web/src/components/product/ProductSelectionPage.tsx +++ b/web/src/components/product/ProductSelectionPage.tsx @@ -24,7 +24,6 @@ import React, { useState } from "react"; import { Card, CardBody, - Flex, Form, Grid, GridItem, @@ -116,40 +115,40 @@ function ProductSelectionPage() { const isSelectionDisabled = !nextProduct || nextProduct === selectedProduct; return ( - -
-
- - - - - {products.map((product, index) => ( - - - - - - {selectedProduct && !isLoading && } - - {_("Select")} - - - - -
-
-
+ + +
+
+ + + + + {products.map((product, index) => ( + + + + +
+
+
+ + + + {_("Select")} + + +
); }