elm-pages 3.0.0-beta.28 → 3.0.0-beta.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -651,7 +651,6 @@ expectQueryParam name =
651
651
  maybeParamValue =
652
652
  queryString
653
653
  |> QueryParams.fromString
654
- |> QueryParams.toDict
655
654
  |> Dict.get name
656
655
  |> Maybe.andThen List.head
657
656
  in
@@ -690,7 +689,6 @@ findFirstQueryParam : String -> String -> Maybe String
690
689
  findFirstQueryParam name queryString =
691
690
  queryString
692
691
  |> QueryParams.fromString
693
- |> QueryParams.toDict
694
692
  |> Dict.get name
695
693
  |> Maybe.andThen List.head
696
694
 
@@ -705,7 +703,6 @@ queryParams =
705
703
  |> Url.fromString
706
704
  |> Maybe.andThen .query
707
705
  |> Maybe.map QueryParams.fromString
708
- |> Maybe.map QueryParams.toDict
709
706
  |> Maybe.withDefault Dict.empty
710
707
  )
711
708