fix type error in MkTimeline.vue

This commit is contained in:
Hazelnoot 2025-04-02 21:46:59 -04:00
parent 44a82cb57a
commit 1eb8ca1cfd

View file

@ -75,7 +75,7 @@ const tlComponent = useTemplateRef('tlComponent');
let tlNotesCount = 0; let tlNotesCount = 0;
function prepend(note) { function prepend(note: Misskey.entities.Note) {
if (tlComponent.value == null) return; if (tlComponent.value == null) return;
tlNotesCount++; tlNotesCount++;