From 14b334e215aeb87ffed40635ff1bf04acd32baa8 Mon Sep 17 00:00:00 2001 From: Emerson Laurentino Date: Mon, 9 Dec 2024 10:43:06 -0300 Subject: [PATCH] feat: add storefront meta tag to StoreWrapper --- CHANGELOG.md | 3 +++ react/StoreWrapper.js | 1 + 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 558ef00b..5b23b938 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Added +- Storefront metatag + ## [2.137.3] - 2024-10-08 ### Changed diff --git a/react/StoreWrapper.js b/react/StoreWrapper.js index 7453af9a..377a850d 100644 --- a/react/StoreWrapper.js +++ b/react/StoreWrapper.js @@ -153,6 +153,7 @@ const StoreWrapper = ({ children, CustomContext }) => { { name: 'language', content: locale }, { name: 'currency', content: currency }, { name: 'robots', content: robots || META_ROBOTS }, + { name: 'storefront', content: 'store_framework' }, { httpEquiv: 'Content-Type', content: CONTENT_TYPE }, ] .filter(Boolean)