diff --git a/src/components/FluxNote.vue b/src/components/FluxNote.vue
index 504cf4f..96c68a6 100644
--- a/src/components/FluxNote.vue
+++ b/src/components/FluxNote.vue
@@ -63,12 +63,14 @@ const renderedContent = computed(() =>
: store.readme,
)
-const hasContent = computed(() => !!renderedContent.value)
const isLoading = computed(() => renderedContent.value === undefined)
+const hasContent = computed(() => !!renderedContent.value)
watch(
renderedContent,
async () => {
+ console.log(renderedContent.value)
+
await nextTick()
listenToClick()
},
@@ -112,7 +114,15 @@ onUnmounted(() => {