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

@@ -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")