Skip to content

Commit

Permalink
hide cta if logged in
Browse files Browse the repository at this point in the history
  • Loading branch information
SuaYoo committed Nov 25, 2024
1 parent 49d9364 commit 1bfad5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/org/profile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class OrgProfile extends BtrixElement {
org ? this.renderOrg(org) : this.renderNotFound(),
error: this.renderNotFound,
})}
${this.renderSignUpCta()}
${when(!this.authState, () => this.renderSignUpCta())}
</div>
`;
}
Expand Down

0 comments on commit 1bfad5e

Please sign in to comment.