@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vtex/faststore-plugin-buyer-portal",
3
- "version": "1.1.78",
3
+ "version": "1.1.80",
4
4
  "description": "A plugin for faststore with buyer portal",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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.geoCordinates.split(",") ?? [],
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
- Demostore
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
- Demostore
30
+ {storeConfig.seo.title}
29
31
  </Link>
30
32
  }
31
33
  onClose={close}