Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Dec 27, 2023
1 parent a598baa commit 9d5fc4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/channel-editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 9d5fc4c

Please sign in to comment.