Skip to content

Commit 78948b3

Browse files
JordanMartinezdarichey
authored andcommitted
Update library to compile on upcoming 0.14.0 PS release (#113)
1 parent 942e474 commit 78948b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/React/Basic/Events.purs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import Data.Symbol (class IsSymbol, SProxy(SProxy))
1616
import Effect (Effect)
1717
import Effect.Uncurried (EffectFn1, mkEffectFn1)
1818
import Prim.Row as Row
19-
import Prim.RowList (kind RowList, class RowToList, Cons, Nil)
19+
import Prim.RowList (class RowToList, RowList, Cons, Nil)
2020
import Record (delete, get, insert)
2121
import Type.Data.RowList (RLProxy(..))
2222

@@ -79,7 +79,7 @@ handler_ = mkEffectFn1 <<< const
7979
syntheticEvent :: EventFn SyntheticEvent SyntheticEvent
8080
syntheticEvent = identity
8181

82-
class Merge (rl :: RowList) fns a r | rl -> fns, rl a -> r where
82+
class Merge (rl :: RowList Type) fns a r | rl -> fns, rl a -> r where
8383
mergeImpl :: RLProxy rl -> Record fns -> EventFn a (Record r)
8484

8585
instance mergeNil :: Merge Nil () a () where

0 commit comments

Comments
 (0)