File tree Expand file tree Collapse file tree 2 files changed +1
-8
lines changed
src/app/shared/components/challenge-card Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments