gatsby-theme-q3 3.3.4 → 3.3.5
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +8 -0
- package/gatsby-browser.js +2 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,14 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [3.3.5](https://github.com/3merge/q/compare/v3.3.4...v3.3.5) (2022-02-17)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package gatsby-theme-q3
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
6
14
|
## [3.3.4](https://github.com/3merge/q/compare/v3.3.3...v3.3.4) (2022-02-17)
|
7
15
|
|
8
16
|
**Note:** Version bump only for package gatsby-theme-q3
|
package/gatsby-browser.js
CHANGED
@@ -27,7 +27,8 @@ export const onClientEntry = async () => {
|
|
27
27
|
const parts = str.split('.').slice(0, offset).join('.');
|
28
28
|
|
29
29
|
if (size(parts))
|
30
|
-
axios.defaults.headers['X-Session-Tenant'] =
|
30
|
+
axios.defaults.headers['X-Session-Tenant'] =
|
31
|
+
process.env.GATSBY_APP_TENANT || parts;
|
31
32
|
|
32
33
|
// calls Q3 API
|
33
34
|
await getDomain();
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "gatsby-theme-q3",
|
3
|
-
"version": "3.3.
|
3
|
+
"version": "3.3.5",
|
4
4
|
"main": "index.js",
|
5
5
|
"license": "MIT",
|
6
6
|
"peerDependencies": {
|
@@ -42,5 +42,5 @@
|
|
42
42
|
"transform-loader": "^0.2.4",
|
43
43
|
"yarn": "^1.22.17"
|
44
44
|
},
|
45
|
-
"gitHead": "
|
45
|
+
"gitHead": "d8615aeed1cbc626f44a9f8f544aa01db58f6457"
|
46
46
|
}
|