Skip to content

Commit

Permalink
fix(formatting): run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
miles-grant-ibigroup committed Feb 3, 2022
1 parent 576a869 commit 5a7a1f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ function run({
query,
url = searchUrl
}: PeliasFetchArgs): JSONArrayPromise {
return fetch(`${url}?${stringify(query, {allowDots: true})}`, options)
return fetch(`${url}?${stringify(query, { allowDots: true })}`, options)
.then((res) => res.json())
.then((json) => {
let jsonResponse = json
Expand Down

0 comments on commit 5a7a1f1

Please sign in to comment.