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 3ce5912 commit ff41e76Copy full SHA for ff41e76
packages/data-connect/src/network/fetch.ts
@@ -15,17 +15,18 @@
15
* limitations under the License.
16
*/
17
18
+import { isCloudWorkstation } from '@firebase/util';
19
+
20
import {
21
Code,
22
DataConnectError,
23
DataConnectOperationError,
24
DataConnectOperationFailureResponse
25
} from '../core/error';
26
import { SDK_VERSION } from '../core/version';
-import { logDebug, logError } from '../logger';
27
+import { logError } from '../logger';
28
29
import { CallerSdkType, CallerSdkTypeEnum } from './transport';
-import { isCloudWorkstation } from '@firebase/util';
30
31
let connectFetch: typeof fetch | null = globalThis.fetch;
32
export function initializeFetch(fetchImpl: typeof fetch): void {
0 commit comments