I am trying to convert Future[Seq[(String, String)]] to Future[Seq[(String)]] using the following:
sortedSeq.map(_._2)
so sortedSeq is of type Future[Seq[(String, String)]]
but I keep getting the error :
value _2 is not a member of Seq[(String, String)]
What am I doing wrong ?