Skip to content

Commit

Permalink
fix: utility: url: add empty string in excludedQueryParams
Browse files Browse the repository at this point in the history
  • Loading branch information
zwelhtetyan authored and thihathit committed Mar 6, 2024
1 parent dd6cbd0 commit 068c4a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utility/url.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ type Data = {
[key: string]: Value
}
const baseURL = self.location.origin
const excludedQueryParams: Value[] = [undefined]
const excludedQueryParams: Value[] = [undefined, '']

export type URLBuilderOptions = {
params?: Data
Expand Down

0 comments on commit 068c4a4

Please sign in to comment.