Skip to content

Commit b93fb5b

Browse files
chore: address code review feedback - remove debug logs and tests mention from changelog
1 parent e73564b commit b93fb5b

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ and this project adheres to
66

77
### [itachallenge-challenge-3.28.1-RELEASE] - 2026-02-22
88
### Added
9-
- Bookmark toggle functionality and comprehensive test coverage
9+
- Bookmark toggle functionality in challenge card component
1010

1111
### [ita-challenges-frontend-3.28.0-RELEASE] - 2026-02-19
1212
### Added

src/app/shared/components/challenge-card/challenge-card.component.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,6 @@ export class ChallengeCardComponent implements OnInit {
104104

105105
toggleBookmark(event: MouseEvent, tooltip?: NgbTooltip): void {
106106

107-
// console.log('🔖 toggleBookmark called!', {
108-
// id: this.id,
109-
// isBookmarked: this.isBookmarked,
110-
// isLoggedIn: this.authService.isUserLoggedIn()
111-
// })
112107
event.stopPropagation()
113108
if (!this.authService.isUserLoggedIn()) {
114109
return
@@ -122,7 +117,6 @@ export class ChallengeCardComponent implements OnInit {
122117
next: () => {
123118
this.isBookmarked = false
124119
this.bookmarks_count--
125-
console.error('removing bookmark OKK')
126120
},
127121
error: (err) => {
128122
console.error('Error removing bookmark:', err)
@@ -133,7 +127,6 @@ export class ChallengeCardComponent implements OnInit {
133127
next: () => {
134128
this.isBookmarked = true
135129
this.bookmarks_count++
136-
console.error('adding bookmark: OKKK')
137130
},
138131
error: (err) => {
139132
console.error('Error adding bookmark:', err)

0 commit comments

Comments
 (0)