diff --git a/src/pages/address/page.tsx b/src/pages/address/page.tsx index bc09762..9f0c50e 100644 --- a/src/pages/address/page.tsx +++ b/src/pages/address/page.tsx @@ -178,6 +178,7 @@ export default function AddressPage() { color: "#FFF", height: 50, border: "none", + boxShadow: "none", }} disabled={false} > diff --git a/src/pages/checkout/components/AddressSummary.tsx b/src/pages/checkout/components/AddressSummary.tsx index d7b45f5..c9ac65a 100644 --- a/src/pages/checkout/components/AddressSummary.tsx +++ b/src/pages/checkout/components/AddressSummary.tsx @@ -26,7 +26,6 @@ export const AddressSummary = () => { try { const locationData = JSON.parse(locationString) as LocationData; dispatch(updateLocation(locationData)); - console.log("Location saved to Redux store:", locationData); } catch (error) { console.error("Failed to parse location data:", error); } @@ -62,6 +61,9 @@ export const AddressSummary = () => { type="primary" size="small" onClick={handleMapBottomSheetOpen} + style={{ + boxShadow: "none", + }} > {location ? t("address.changeLocation")