always default to latest notes instead of pins

This commit is contained in:
Hazel K 2024-10-05 19:57:16 -04:00
parent 3003affe6a
commit 35114df6d4

View file

@ -253,7 +253,7 @@ const memoDraft = ref(props.user.memo);
const isEditingMemo = ref(false);
const moderationNote = ref(props.user.moderationNote);
const editModerationNote = ref(false);
const noteview = ref<string | null>(props.user.pinnedNotes.length > 0 ? 'pinned' : null);
const noteview = ref<string | null>(null);
const listenbrainzdata = ref(false);
if (props.user.listenbrainz) {