We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c4f0c6 commit dd721d6Copy full SHA for dd721d6
.github/workflows/ci.yml
@@ -50,8 +50,11 @@ jobs:
50
- name: Run tests 🧪
51
run: yarn test
52
53
+ - name: Debug 🐛
54
+ run: echo GITHUB_SHA=${GITHUB_SHA}
55
+
56
- name: Build 🏗️
- run: mv .env.production .env && GITHUB_SHA=${GITHUB_SHA}; yarn generate
57
+ run: mv .env.production .env && echo GITHUB_SHA=${GITHUB_SHA} > .env && yarn generate
58
59
- name: Deploy 🚀
60
uses: FirebaseExtended/action-hosting-deploy@v0
web/plugins/axios.ts
@@ -14,7 +14,7 @@ export function setAuthHeader(token: string | null) {
14
}
15
16
export function setApiKey(apiKey: string | null) {
17
- client.defaults.headers['x-api-key'] = apiKey
+ client.defaults.headers.common['x-api-key'] = apiKey
18
19
20
export default client
0 commit comments