Skip to content

Commit f064c9f

Browse files
amberleyromoDSchau
authored andcommitted
fix: env var name change for build (#11228)
1 parent e9cfd13 commit f064c9f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

www/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ Several areas of the site include feedback widgets (currently starter library an
3434
If you have access to the keys, add them like so:
3535

3636
```
37-
UNBIRD_FEEDBACK_KEY_PLUGINLIB=ADD_KEY
38-
UNBIRD_FEEDBACK_KEY_STARTERLIB=ADD_KEY
37+
GATSBY_FEEDBACK_KEY_PLUGINLIB=ADD_KEY
38+
GATSBY_FEEDBACK_KEY_STARTERLIB=ADD_KEY
3939
```
4040

4141
If there's a problem with the feedback widgets, please open an issue in the repo.

www/src/pages/plugins.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class Plugins extends Component {
6868
</div>
6969
<Unbird
7070
dataSetId="5c1ac24b4a828a169b6c235c"
71-
publicKey={process.env.UNBIRD_FEEDBACK_KEY_PLUGINLIB}
71+
publicKey={process.env.GATSBY_FEEDBACK_KEY_PLUGINLIB}
7272
feedbackPrompt="Have feedback on the Plugin Library?"
7373
/>
7474
</Container>

www/src/templates/template-docs-local-packages.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class DocsLocalPackagesTemplate extends React.Component {
7070
/>
7171
<Unbird
7272
dataSetId="5c1ac24b4a828a169b6c235c"
73-
publicKey={process.env.UNBIRD_FEEDBACK_KEY_PLUGINLIB}
73+
publicKey={process.env.GATSBY_FEEDBACK_KEY_PLUGINLIB}
7474
feedbackPrompt="Have feedback on the Plugin Library?"
7575
/>
7676
</>

www/src/templates/template-docs-remote-packages.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class DocsRemotePackagesTemplate extends React.Component {
2828
/>
2929
<Unbird
3030
dataSetId="5c1ac24b4a828a169b6c235c"
31-
publicKey={process.env.UNBIRD_FEEDBACK_KEY_PLUGINLIB}
31+
publicKey={process.env.GATSBY_FEEDBACK_KEY_PLUGINLIB}
3232
feedbackPrompt="Have feedback on the Plugin Library?"
3333
/>
3434
</>

www/src/views/starter-library/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class StarterLibraryPage extends Component {
5858
/>
5959
<Unbird
6060
dataSetId="5c113a828240aa564734d954"
61-
publicKey={process.env.UNBIRD_FEEDBACK_KEY_STARTERLIB}
61+
publicKey={process.env.GATSBY_FEEDBACK_KEY_STARTERLIB}
6262
feedbackPrompt="Have feedback on the Starter Library?"
6363
/>
6464
</Layout>

0 commit comments

Comments
 (0)