Commit 6a2394ab authored by Alexandre Delanoë's avatar Alexandre Delanoë

[FIX] Contact String String -> Contact Void Void, does not render either.

parent 92fcaf6f
......@@ -15,7 +15,7 @@ import Gargantext.Prelude
import Gargantext.Pages.Annuaire.User.Contacts.Types (Action(..), State, Contact, _contact)
import Thermite (PerformAction, modifyState)
getContact :: Int -> Aff (Contact String String)
getContact :: Int -> Aff (Contact Void Void)
getContact id = get $ toUrl Back Node id
fetchContact :: Int -> StateCoTransformer State Unit
......
......@@ -55,7 +55,7 @@ mapMyMap f m = toUnfoldable
infixl 4 mapMyMap as <.~$>
contactInfos :: HyperData String String -> ReactElement
contactInfos :: HyperData Void Void -> ReactElement
contactInfos hyperdata =
ul [className "list-group"] [] {- $
listInfo <.~$> hyperdata
......
......@@ -61,7 +61,7 @@ data Action
type State =
{ activeTab :: Int
, contact :: Maybe (Contact String String)
, contact :: Maybe (Contact Void Void)
}
initialState :: State
......@@ -70,7 +70,7 @@ initialState =
, contact: Nothing
}
_contact :: Lens' State (Maybe (Contact String String))
_contact :: Lens' State (Maybe (Contact Void Void))
_contact = lens (\s -> s.contact) (\s ss -> s{contact = ss})
_tablens :: Lens' State Tab.State
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment