We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38576f4 commit 26b99bdCopy full SHA for 26b99bd
CHANGELOG.md
@@ -10,6 +10,7 @@ New features:
10
11
Bugfixes:
12
- Fix double `main` invocation (#295 by @JordanMartinez)
13
+- Stop loading hang when using query params to show compiled JS output (#296 by @JordanMartinez)
14
15
Other improvements:
16
client/src/Try/Container.purs
@@ -183,8 +183,9 @@ component = H.mkComponent
183
184
Right res@(Right (CompileSuccess { js, warnings })) -> do
185
{ settings } <- H.get
186
- if settings.showJs then
+ if settings.showJs then do
187
H.liftEffect teardownIFrame
188
+ H.modify_ _ { compiled = Just res }
189
else do
190
for_ warnings \warnings_ -> do
191
let anns = Array.mapMaybe (toAnnotation MarkerWarning) warnings_
0 commit comments