Remove superfluous logging.

This commit is contained in:
Dermot Duffy
2022-06-26 13:34:08 -07:00
parent 71d9e867b3
commit 6d80ff302c
-2
View File
@@ -228,10 +228,8 @@ export class FrigateCardMediaCarousel extends FrigateCardCarousel {
*/
protected _nextPreviousHandler(direction: 'previous' | 'next'): void {
if (direction === 'previous') {
console.info("scrolling previous", this._carousel?.canScrollPrev());
this._carousel?.scrollPrev(this._getTransitionEffect() === 'none');
} else if (direction === 'next') {
console.info("scrolling next");
this._carousel?.scrollNext(this._getTransitionEffect() === 'none');
}
}