Fixed double encoding

This commit is contained in:
Wyatt Johnson
2018-05-30 14:22:13 -06:00
parent 9ed991936e
commit c24251e8f2
+1 -1
View File
@@ -4,7 +4,7 @@
{% include "partials/data.njk" %}
</head>
<body>
<script type="application/json" id="auth">{{ encodeJSONForHTML(auth) }}</script>
<script type="application/json" id="auth">{{ encodeJSONForHTML(auth) | safe }}</script>
<script type="text/javascript" src="{{ resolve('coral-auth-callback/bundle.js') }}"></script>
</body>
</html>