Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Commit 1fb7ef4

Browse files
authored
Merge pull request #9 from slamdata/fix-syntax
Fix syntax that will be an error in PS 0.13
2 parents d17e80a + 411ab7b commit 1fb7ef4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Lunapark/API.purs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,8 +306,7 @@ handleLunapark inp = case _ of
306306
R.liftEffect $ Ref.write ts inp.timeoutsRef
307307
tryAndCache "set timeouts"
308308
[ void $ post (inSession : LP.Timeouts : Nil) (LT.encodeTimeouts ts)
309-
, do T.for_ (LT.encodeLegacyTimeouts ts) \j →
310-
void $ post (inSession : LP.Timeouts : Nil) j
309+
, T.for_ (LT.encodeLegacyTimeouts ts) (post (inSession : LP.Timeouts : Nil))
311310
]
312311
pure next
313312
GoTo uri next → do

0 commit comments

Comments
 (0)