the profile view was not resetting to guest view after signing out because i forgot to add the event lister to the connected callback. now when you sign out, the profile view resets to guest view.
This commit is contained in:
parent
4563149393
commit
f68fab11eb
1 changed files with 3 additions and 2 deletions
|
@ -109,7 +109,7 @@ Profile Picture Container
|
|||
`];
|
||||
|
||||
async firstUpdated() {
|
||||
// this method is a lifecycle even in lit
|
||||
// this method is a lifecycle event in lit
|
||||
// for more info check out the lit docs https://lit.dev/docs/components/lifecycle/
|
||||
console.log('This is your home page');
|
||||
}
|
||||
|
@ -118,9 +118,10 @@ Profile Picture Container
|
|||
connectedCallback(): void {
|
||||
super.connectedCallback();
|
||||
window.addEventListener('profile-updated', this.updateProfileFromEvent.bind(this));
|
||||
this.addEventListener('user-signed-out', this.handlesSignOut);
|
||||
const storedPubkey = localStorage.getItem('pubkey');
|
||||
if (storedPubkey) {
|
||||
// Manually fetch profile metadata on mount
|
||||
// manually fetch profile metadata on mount
|
||||
this.nostrAddy = 'loading...';
|
||||
this.bio = 'loading profile...';
|
||||
this.profilePic = '/assets/img/default_pfp.png';
|
||||
|
|
Loading…
Reference in a new issue