View Source PhxLocalizedRoutes.Exceptions.AssignsMismatchError exception (Phoenix Localized Routes v0.1.2)

Raised when the custom assigns of scopes do not have the same keys.

%{
  scopes: %{
    "/"      => %{assigns: %{key1: 1, key2: 2}},
    "/other" => %{assigns: %{key1: 1}} # missing :key2
  }
}