remove boxShadow
This commit is contained in:
@@ -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}
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -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")
|
||||||
|
|||||||
Reference in New Issue
Block a user