Skip to content

Commit

Permalink
Removed extra console checks
Browse files Browse the repository at this point in the history
  • Loading branch information
tutaru99 committed Jul 4, 2024
1 parent 38adf3f commit 7bb7513
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions components/view-components/RelatedContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,8 @@ const props = defineProps({
},
});
console.log('props.data', props.data);
const isLoading = ref(false);
const relatedContent = ref(props.data.relatedContent);
console.log('relatedContent component', relatedContent);
const processedFilters = computed(() => {
const exposedFilters =
Expand Down Expand Up @@ -57,8 +54,6 @@ const content = computed(() =>
const currentFilter = ref('Alle');
const handleSorting = (key: string) => {
console.log('filter key', key);
if (key === currentFilter.value) {
return;
}
Expand Down

0 comments on commit 7bb7513

Please sign in to comment.