diff --git a/components/scenes/scenes.vue b/components/scenes/scenes.vue index 3f94181..0ade907 100644 --- a/components/scenes/scenes.vue +++ b/components/scenes/scenes.vue @@ -212,8 +212,6 @@ const aggActors = ref(pageProps.aggActors || []); const aggTags = ref(pageProps.aggTags || []); const aggChannels = ref(pageProps.aggChannels || []); -console.log(aggChannels.value); - const currentPage = ref(Number(routeParams.page)); const scope = ref(routeParams.scope || props.defaultScope); const total = ref(Number(pageProps.sceneTotal || pageProps.total)); diff --git a/components/scenes/tile.vue b/components/scenes/tile.vue index 4b5936e..361640e 100644 --- a/components/scenes/tile.vue +++ b/components/scenes/tile.vue @@ -316,7 +316,6 @@ const favorited = ref(props.scene.stashes.some((sceneStash) => sceneStash.id === } .shoot { - color: var(--primary); font-size: .75rem; font-weight: bold; } diff --git a/src/scenes.js b/src/scenes.js index 1f491f1..b7c004d 100644 --- a/src/scenes.js +++ b/src/scenes.js @@ -580,8 +580,6 @@ export async function fetchScenes(filters, rawOptions, reqUser) { options.aggregateChannels ? fetchEntitiesById(entityIds.map((bucket) => bucket.key), { order: ['slug', 'asc'], append: channelCounts }) : [], ]); - console.log('studio ids', aggChannels.filter((studio) => studio.slug === 'wgcz')); - console.timeEnd('fetch aggregations'); console.time('fetch full');