@vtex/faststore-plugin-buyer-portal 1.1.78 → 1.1.80
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/package.json +1 -1
- package/src/features/credit-cards/services/tokenize-credit-card.service.ts +1 -1
- package/src/features/org-units/components/OrgUnitDetailsNavbar/OrgUnitDetailsNavbar.tsx +3 -1
- package/src/features/shared/layouts/BaseTabsLayout/sidebar-drawer/SidebarDrawer.tsx +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
### Added
|
|
11
11
|
|
|
12
|
+
- Change for the store title based on the SEO
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
12
16
|
- Standardization the sidebar menu throughout the navigation of the Organizational Account, regardless of the context.
|
|
13
17
|
|
|
14
18
|
### Fixed
|
package/package.json
CHANGED
|
@@ -27,7 +27,7 @@ export const tokenizeCreditCardService = async ({
|
|
|
27
27
|
complement: creditCard.address.streetAddress2,
|
|
28
28
|
coutry: creditCard.address.countryCode,
|
|
29
29
|
neighborhood: creditCard.address.neighborhood ?? "",
|
|
30
|
-
geoCoordinates: creditCard.address.
|
|
30
|
+
geoCoordinates: creditCard.address.geoCoordinates.split(",") ?? [],
|
|
31
31
|
postalCode: creditCard.address.zip,
|
|
32
32
|
number: "",
|
|
33
33
|
receiverName: "NOT EMPTY",
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import storeConfig from "discovery.config";
|
|
2
|
+
|
|
1
3
|
import Link from "next/link";
|
|
2
4
|
|
|
3
5
|
import {
|
|
@@ -29,7 +31,7 @@ export const OrgUnitDetailsNavbar = ({
|
|
|
29
31
|
return (
|
|
30
32
|
<header data-fs-bp-org-unit-details-navbar>
|
|
31
33
|
<Link href="/" data-fs-bp-org-unit-details-navbar-link>
|
|
32
|
-
|
|
34
|
+
{storeConfig.seo.title}
|
|
33
35
|
</Link>
|
|
34
36
|
<div data-fs-bp-org-unit-details-navbar-actions>
|
|
35
37
|
<Link href="/" data-fs-bp-org-unit-details-navbar-start-shopping-link>
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import storeConfig from "discovery.config";
|
|
2
|
+
|
|
1
3
|
import Link from "next/link";
|
|
2
4
|
|
|
3
5
|
import { BasicDrawer, type BasicDrawerProps } from "../../../components";
|
|
@@ -25,7 +27,7 @@ export const SidebarDrawer = ({
|
|
|
25
27
|
<BasicDrawer.Heading
|
|
26
28
|
title={
|
|
27
29
|
<Link href="/" data-fs-bp-org-unit-details-navbar-link>
|
|
28
|
-
|
|
30
|
+
{storeConfig.seo.title}
|
|
29
31
|
</Link>
|
|
30
32
|
}
|
|
31
33
|
onClose={close}
|