Skip to content

Commit bc448a4

Browse files
Fix case of stage environment variable. (#1014)
1 parent 763b702 commit bc448a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
content="A Python Editor for the BBC micro:bit, built by the Micro:bit Educational Foundation and the global Python Community."
1919
/>
2020
<% if (process.env.REACT_APP_GA_MEASUREMENT_ID &&
21-
(process.env.REACT_APP_STAGE === 'production' || process.env.REACT_APP_STAGE
21+
(process.env.REACT_APP_STAGE === 'PRODUCTION' || process.env.REACT_APP_STAGE
2222
=== "STAGING")) { %>
2323
<script
2424
async

0 commit comments

Comments
 (0)