remove boxShadow

This commit is contained in:
2025-10-13 17:35:31 +03:00
parent abfaeac0ca
commit 1cc01ace4f
2 changed files with 4 additions and 1 deletions

View File

@@ -178,6 +178,7 @@ export default function AddressPage() {
color: "#FFF", color: "#FFF",
height: 50, height: 50,
border: "none", border: "none",
boxShadow: "none",
}} }}
disabled={false} disabled={false}
> >

View File

@@ -26,7 +26,6 @@ export const AddressSummary = () => {
try { try {
const locationData = JSON.parse(locationString) as LocationData; const locationData = JSON.parse(locationString) as LocationData;
dispatch(updateLocation(locationData)); dispatch(updateLocation(locationData));
console.log("Location saved to Redux store:", locationData);
} catch (error) { } catch (error) {
console.error("Failed to parse location data:", error); console.error("Failed to parse location data:", error);
} }
@@ -62,6 +61,9 @@ export const AddressSummary = () => {
type="primary" type="primary"
size="small" size="small"
onClick={handleMapBottomSheetOpen} onClick={handleMapBottomSheetOpen}
style={{
boxShadow: "none",
}}
> >
{location {location
? t("address.changeLocation") ? t("address.changeLocation")