Skip to content

Commit

Permalink
Merge pull request #46 from smartystreets/eric/fix-max-results
Browse files Browse the repository at this point in the history
Resolve MaxResults Parameter Issue
  • Loading branch information
RyanLCox1 authored Oct 30, 2024
2 parents d056f7b + e5d2565 commit dd997b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sdk/InternationalAutcompleteApi/Lookup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public Lookup(string search) : this()

#endregion

internal string MaxSuggestionsString => this.MaxResults.Equals(MAX_RESULTS_DEFAULT) ? null : this.MaxResults.ToString();
internal string MaxSuggestionsString => this.MaxResults.ToString();

}
}

0 comments on commit dd997b4

Please sign in to comment.