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 e471cf7 commit b3427c5Copy full SHA for b3427c5
packages/app-check/src/client.ts
@@ -25,7 +25,6 @@ import { FirebaseApp } from '@firebase/app';
25
import { ERROR_FACTORY, AppCheckError } from './errors';
26
import { Provider } from '@firebase/component';
27
import { AppCheckTokenInternal } from './types';
28
-import { isCloudWorkstation } from '@firebase/util';
29
30
/**
31
* Response JSON returned from AppCheck server endpoint.
@@ -63,9 +62,6 @@ export async function exchangeToken(
63
62
body: JSON.stringify(body),
64
headers
65
};
66
- if (isCloudWorkstation(url)) {
67
- options.credentials = 'include';
68
- }
69
let response;
70
try {
71
response = await fetch(url, options);
0 commit comments