Skip to content

Commit

Permalink
[base] Temporary workaround for incorrect client definitions being re…
Browse files Browse the repository at this point in the history
…solved
  • Loading branch information
rexxars committed Oct 6, 2020
1 parent 117659e commit 8862b25
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/@sanity/base/src/components/VersionChecker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ const checkVersions = (options: {getOutdated?: boolean} = {}): Promise<VersionsR
return client
.request({
uri: '/versions',
query: buildQueryString(),
// resolving the right client definition seems to be an issue :shrug:
query: buildQueryString() as any,
json: true
})
.then(result => ({
Expand Down

0 comments on commit 8862b25

Please sign in to comment.