diff --git a/src/client/app/components/ClientOnly.ts b/src/client/app/components/ClientOnly.ts index 5d54d4ea..edbb1066 100644 --- a/src/client/app/components/ClientOnly.ts +++ b/src/client/app/components/ClientOnly.ts @@ -8,7 +8,6 @@ export const ClientOnly = defineComponent({ } }, setup({ isClientOnly }, { slots }) { - if (isClientOnly) console.log({ isClientOnly, slots }) // Programmatically determine if this component should be // client-only based on the presence of the isClientOnly attribute. if (!isClientOnly) return () => slots.default?.() || null diff --git a/src/client/theme-default/components/VPNavBarMenu.vue b/src/client/theme-default/components/VPNavBarMenu.vue index 7c7fed86..98ad5428 100644 --- a/src/client/theme-default/components/VPNavBarMenu.vue +++ b/src/client/theme-default/components/VPNavBarMenu.vue @@ -8,7 +8,7 @@ const { theme } = useData()