diff --git a/packages/frontend/src/pages/channel-editor.vue b/packages/frontend/src/pages/channel-editor.vue index bd38da7b63be19dc9100dbdbe38a423ca49ea0f2..912d02c7fc8f9b03123eaf6b7abff89e9f6a6ef5 100644 --- a/packages/frontend/src/pages/channel-editor.vue +++ b/packages/frontend/src/pages/channel-editor.vue @@ -99,7 +99,7 @@ const bannerId = ref<string | null>(null); const color = ref('#000'); const isSensitive = ref(false); const allowRenoteToExternal = ref(true); -const pinnedNotes = ref<Partial<Misskey.entities.Note>[]>([]); +const pinnedNotes = ref<{ id: Misskey.entities.Note['id'] }[]>([]); watch(() => bannerId.value, async () => { if (bannerId.value == null) {