fix: remove old console.log statements

This commit is contained in:
2023-12-06 17:04:32 +01:00
parent 9d5dd05bb6
commit d44204cf8d
3 changed files with 0 additions and 3 deletions

View File

@@ -132,7 +132,6 @@ export class AddEventReviewModalComponent implements OnInit {
), ),
}); });
} }
console.log((navigator as unknown as NewShareNavigator).canShare(shareData));
if (!(navigator as unknown as NewShareNavigator).canShare(shareData)) { if (!(navigator as unknown as NewShareNavigator).canShare(shareData)) {
return Dialog.alert({ return Dialog.alert({

View File

@@ -65,7 +65,6 @@ export class CoordinatedSearchProvider {
* 2. If not, waits a set amount of time for other requests to come in * 2. If not, waits a set amount of time for other requests to come in
*/ */
async coordinatedSearch(query: SCSearchRequest, latencyMs = 50): Promise<SCSearchResponse> { async coordinatedSearch(query: SCSearchRequest, latencyMs = 50): Promise<SCSearchResponse> {
console.log('coordinatedSearch', query);
const ongoingQuery: OngoingQuery = {request: query}; const ongoingQuery: OngoingQuery = {request: query};
this.queue.push(ongoingQuery); this.queue.push(ongoingQuery);

View File

@@ -36,7 +36,6 @@ export function searchPageSwitchAnimation(animationController: AnimationControll
.create() .create()
.fromTo('opacity', '1', '1') .fromTo('opacity', '1', '1')
.addElement(options.leavingEl); .addElement(options.leavingEl);
console.log(options.enteringEl.querySelector('stapps-data-list'));
const contentSlide = animationController const contentSlide = animationController
.create() .create()
.fromTo('transform', 'translateX(600px)', 'translateX(0px)') .fromTo('transform', 'translateX(600px)', 'translateX(0px)')