ソースを参照

Add a missing instance of query

jherve 1 年間 前
コミット
2ba0c21c69
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 Nothing = pure Nothing
 
+instance Queryable q => CanBeQueried q JobsUnifiedTopCardElement where
+  query = queryJobsUnifiedTopCardElement
+
 derive instance Generic (TopCardPrimaryDescription a) _
 derive instance Eq a => Eq (TopCardPrimaryDescription a)
 instance Show a => Show (TopCardPrimaryDescription a) where