Skip to content

Commit 2609bb6

Browse files
committed
🔨 remove unneeded emits
1 parent 1d6ee57 commit 2609bb6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/views/Setlists.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ const props = defineProps({
308308
const searchInput = ref(null);
309309
310310
// injects and emits
311-
const emit = defineEmits(['started', 'editSong', 'addSetlist', 'editSetlist']);
311+
const emit = defineEmits(['addSetlist', 'editSetlist']);
312312
313313
// table filter
314314
const filter = reactive({

src/views/Songs.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ const props = defineProps({
315315
const searchInput = ref(null);
316316
317317
// injects and emits
318-
const emit = defineEmits(['started', 'addSong', 'editSong', 'editSetlist']);
318+
const emit = defineEmits(['addSong', 'editSong']);
319319
320320
// table filter
321321
const filter = reactive({

0 commit comments

Comments
 (0)