Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"purescript-functions": "^4.0.0",
"purescript-nullable": "^4.1.0",
"purescript-record": "^1.0.0",
"purescript-typelevel-prelude": "^3.0.0",
"purescript-unsafe-coerce": "^4.0.0",
"purescript-web-dom": "^1.0.0",
"purescript-web-html": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion src/React/Basic.purs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import Data.Function.Uncurried (Fn2, mkFn2, runFn2)
import Data.Nullable (Nullable, notNull, null)
import Effect (Effect)
import Effect.Uncurried (EffectFn3, runEffectFn3)
import Type.Row (class Union)
import Prim.Row (class Union)

-- | `ComponentSpec` represents a React-Basic component implementation.
-- |
Expand Down
2 changes: 1 addition & 1 deletion src/React/Basic/Events.purs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import Effect.Uncurried (EffectFn1, mkEffectFn1)
import Prim.Row as Row
import Prim.RowList (kind RowList, class RowToList, Cons, Nil)
import Record (delete, get, insert)
import Type.Row (RLProxy(..))
import Type.Data.RowList (RLProxy(..))

-- | An event handler, which receives a `SyntheticEvent` and performs some
-- | effects in return.
Expand Down