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 77ec351 commit 1523c00Copy full SHA for 1523c00
packages/agent-webapp/src/components/auth.ts
@@ -131,7 +131,7 @@ export class AuthComponent extends LitElement {
131
: nothing}
132
</section>`;
133
134
- protected renderGuard = () => (Boolean(this.loaded) ? html`<slot></slot>` : nothing);
+ protected renderGuard = () => (Boolean(this.loaded && this._userDetails) ? html`<slot></slot>` : nothing);
135
136
protected renderLogin = () =>
137
!this.loaded
0 commit comments