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 45dc023 commit 3b33a0aCopy full SHA for 3b33a0a
ui/src/components/common-google-oauth.ts
@@ -41,9 +41,7 @@ export class CommonGoogleOauthElement extends LitElement {
41
this.authStatus = "Initiating OAuth flow...";
42
this.authResult = null;
43
44
- let authCellId = JSON.parse(JSON.stringify(this.auth, null, 2));
45
- authCellId.space = this.auth?.getAsCellLink().cell.space;
46
- authCellId = JSON.stringify(authCellId);
+ const authCellId = JSON.stringify(this.auth?.getAsCellLink());
47
48
console.log("authCellId", authCellId);
49
0 commit comments