We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 793a3b9 commit c6bc02fCopy full SHA for c6bc02f
packages/config/src/api/site_info.ts
@@ -7,7 +7,7 @@ import { throwUserError } from '../error.js'
7
import { ERROR_CALL_TO_ACTION } from '../log/messages.js'
8
import { IntegrationResponse } from '../types/api.js'
9
import { ModeOption, TestOptions } from '../types/options.js'
10
-import retry from "retry"
+import retry from 'retry'
11
12
type GetSiteInfoOpts = {
13
siteId: string
@@ -165,10 +165,10 @@ const getIntegrations = async function ({
165
if (!response.ok) {
166
throw new Error(`Unexpected status code ${response.status} from fetching extensions`)
167
}
168
-
+
169
bodyText = await response.text()
170
})
171
172
if (bodyText === '') {
173
return []
174
0 commit comments