Skip to content

Commit

Permalink
style(@dpc-sdp/ripple-tide-search): cleaned up console logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffdowdle committed Aug 3, 2023
1 parent ad10db5 commit 1566a58
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
6 changes: 1 addition & 5 deletions packages/nuxt-ripple/components/TideContentPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,12 @@
<script setup lang="ts">
// @ts-ignore
import { useTideSite, useTidePage } from '#imports'
import { computed, onMounted } from 'vue'
import { computed } from 'vue'
import { pascalCase, pascalCaseTransformMerge } from 'change-case'
const site = await useTideSite()
const page = await useTidePage()
onMounted(() => {
console.log(page)
})
const componentName = computed(
() =>
page &&
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<script setup lang="ts">
import { toRaw } from 'vue'
import { TideSiteData } from '@dpc-sdp/ripple-tide-api/types'
import type {
TideSearchListingPage,
Expand Down Expand Up @@ -42,8 +41,6 @@ const searchResultsMappingFn = (item): TideSearchListingResultItem => {
}
return item
}
console.log('search config', toRaw(props.page.config))
</script>

<template>
Expand Down

0 comments on commit 1566a58

Please sign in to comment.