Просмотр исходного кода

Add a missing instance of query

jherve 1 год назад
Родитель
Сommit
3c83efae40
1 измененных файлов с 3 добавлено и 0 удалено
  1. 3 0
      src/LinkedIn/UI/Components/JobsUnifiedTopCard.purs

+ 3 - 0
src/LinkedIn/UI/Components/JobsUnifiedTopCard.purs

@@ -81,6 +81,9 @@ traverseMayNel :: forall m t a. Traversable t => Applicative m => Maybe(NonEmpty
 traverseMayNel (Just o) = map pure (sequence (map sequence o))
 traverseMayNel (Just o) = map pure (sequence (map sequence o))
 traverseMayNel Nothing = pure Nothing
 traverseMayNel Nothing = pure Nothing
 
 
+instance Queryable q => CanBeQueried q JobsUnifiedTopCardElement where
+  query = queryJobsUnifiedTopCardElement
+
 derive instance Generic (TopCardPrimaryDescription a) _
 derive instance Generic (TopCardPrimaryDescription a) _
 derive instance Eq a => Eq (TopCardPrimaryDescription a)
 derive instance Eq a => Eq (TopCardPrimaryDescription a)
 instance Show a => Show (TopCardPrimaryDescription a) where
 instance Show a => Show (TopCardPrimaryDescription a) where