Skip to content

Commit 152b7fe

Browse files
committed
Remove debug logging
1 parent 6dc8cbf commit 152b7fe

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/app/pages/profile/profile.component.ts

-8
Original file line numberDiff line numberDiff line change
@@ -1198,7 +1198,6 @@ export class ProfileComponent implements OnInit {
11981198
try {
11991199
const profileData = await this.relayService.loadProfileMetadata(pubkey);
12001200
if (profileData) {
1201-
console.log('Loaded profile:', profileData);
12021201
this.profile = {
12031202
name: profileData.name || '',
12041203
displayName: profileData.displayName || '',
@@ -1265,18 +1264,13 @@ export class ProfileComponent implements OnInit {
12651264
async setActiveTab(tabId: string) {
12661265
this.activeTab = tabId;
12671266

1268-
console.log('Active TAB:', tabId);
1269-
console.log('Members:', this.members);
1270-
12711267
// Load member profiles when switching to members tab
12721268
if (tabId === 'members' && this.members.pubkeys.length > 0) {
12731269

12741270
const validPubkeys = this.members.pubkeys.filter(pk => pk && pk.length > 0);
12751271
if (validPubkeys.length > 0) {
12761272
const profiles = await this.relayService.fetchMemberProfiles(validPubkeys);
12771273

1278-
console.log('PROFILES:', profiles);
1279-
12801274
profiles.forEach(profile => {
12811275
this.memberProfiles[profile.npub] = profile;
12821276
});
@@ -1465,15 +1459,13 @@ export class ProfileComponent implements OnInit {
14651459
for (const event of events) {
14661460
const ndkEvent = new NDKEvent(this.relayService.ndk!, event);
14671461
const published = await ndkEvent.publish();
1468-
console.log('PUBLISHED: ', published);
14691462
}
14701463
} else if (result.key) {
14711464
this.relayService.ndk!.signer = new NDKPrivateKeySigner(result.key);
14721465

14731466
for (const event of events) {
14741467
const ndkEvent = new NDKEvent(this.relayService.ndk!, event);
14751468
const published = await ndkEvent.publish();
1476-
console.log('PUBLISHED: ', published);
14771469
}
14781470
}
14791471

0 commit comments

Comments
 (0)