fix: type issue with NodePage

This commit is contained in:
2026-01-21 22:04:46 -05:00
parent baa3061685
commit 3b706c0092

View File

@@ -9,6 +9,6 @@ defineProps<NodePageFragment>();
<h1 v-if="!isFrontPage" class="font-bold text-4xl"> <h1 v-if="!isFrontPage" class="font-bold text-4xl">
{{ title }} {{ title }}
</h1> </h1>
<BuilderSections v-bind="groupPostPage" /> <BuilderSections :sections="groupPostPage?.sections || []" />
</div> </div>
</template> </template>