From d1b7562ab4e20ea98539206c3796ee62bf79e8f1 Mon Sep 17 00:00:00 2001
From: Paul Kaplan <pkaplan@media.mit.edu>
Date: Thu, 3 May 2018 10:48:09 -0400
Subject: [PATCH] Fix sentry config, used too many quotes

---
 src/playground/index.ejs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/playground/index.ejs b/src/playground/index.ejs
index bd88a5be2..3d2394d66 100644
--- a/src/playground/index.ejs
+++ b/src/playground/index.ejs
@@ -9,7 +9,7 @@
         <!-- Sentry error logging to help with finding bugs -->
         <script src="https://cdn.ravenjs.com/3.22.1/raven.min.js" crossorigin="anonymous"></script>
         <script>
-            Raven.config('<%= htmlWebpackPlugin.options.sentryConfig %>').install();
+            Raven.config(<%= htmlWebpackPlugin.options.sentryConfig %>).install();
         </script>
         <!-- /Sentry -->
     <% } %>
-- 
GitLab