Skip to content

Commit

Permalink
ReCaptha enabled env var: do not stringify it to use it in client (He…
Browse files Browse the repository at this point in the history
…roku passes it as a string already) (#3380)

Co-authored-by: Stefano Ricci <SteRiccio@users.noreply.github.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
  • Loading branch information
3 people committed Apr 19, 2024
1 parent 8f4fb29 commit 0331b5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.config.babel.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const plugins = [
APPLICATION_VERSION: gitRevisionPlugin
? JSON.stringify(gitRevisionPlugin.version())
: JSON.stringify(process.env.APP_VERSION),
RECAPTCHA_ENABLED: JSON.stringify(process.env.RECAPTCHA_ENABLED),
RECAPTCHA_ENABLED: process.env.RECAPTCHA_ENABLED,
RECAPTCHA_SITE_KEY: JSON.stringify(process.env.RECAPTCHA_SITE_KEY),
},
},
Expand Down

0 comments on commit 0331b5f

Please sign in to comment.