fix: 🐛 Put the Note view on the app layout

This commit is contained in:
Jesse Wierzbinski 2024-04-27 21:46:05 -10:00
parent 7004deafcd
commit 86e254b7e7
No known key found for this signature in database

View file

@ -1,13 +1,13 @@
<template>
<ClientOnly>
<div v-if="note" class="max-w-2xl mx-auto md:py-20 md:px-10">
<SocialElementsNotesNote :note="note" />
</div>
<SocialElementsNotesNote v-if="note" :note="note" />
</ClientOnly>
</template>
<script setup lang="ts">
import { useRoute } from "vue-router";
definePageMeta({
layout: "app",
})
const route = useRoute();
const client = useMegalodon();