This commit is contained in:
kakkokari-gtyih 2024-06-07 17:38:18 +09:00
parent 29033bd460
commit 1ef9e584ff
1 changed files with 1 additions and 2 deletions

View File

@ -17,7 +17,6 @@ import * as Misskey from 'misskey-js';
import MkNoteDetailed from '@/components/MkNoteDetailed.vue';
import XNotFound from '@/pages/not-found.vue';
import { misskeyApi } from '@/scripts/misskey-api.js';
import { url } from '@/config.js';
import { useRouter } from '@/router/supplier.js';
const props = defineProps<{
@ -37,7 +36,7 @@ redirectIfNotEmbedPage();
onActivated(redirectIfNotEmbedPage);
provide('EMBED_ORIGINAL_ENTITY_URL', `${url}/notes/${props.noteId}`);
provide('EMBED_ORIGINAL_ENTITY_URL', `/notes/${props.noteId}`);
const note = ref<Misskey.entities.Note | null>(null);
const loading = ref(true);