diff --git a/client/components/cards/LazyBookCard.vue b/client/components/cards/LazyBookCard.vue
index 7f58c611..9e31f50e 100644
--- a/client/components/cards/LazyBookCard.vue
+++ b/client/components/cards/LazyBookCard.vue
@@ -458,10 +458,6 @@ export default {
// More menu func
this.store.commit('showEditModalOnTab', { libraryItem: this.libraryItem, tab: 'match' })
},
- showEditModalDownload() {
- // More menu func
- this.store.commit('showEditModalOnTab', { libraryItem: this.libraryItem, tab: 'download' })
- },
openCollections() {
this.store.commit('setSelectedLibraryItem', this.libraryItem)
this.store.commit('globals/setShowUserCollectionsModal', true)
diff --git a/client/pages/item/_id/index.vue b/client/pages/item/_id/index.vue
index 3bd10e03..f400c95c 100644
--- a/client/pages/item/_id/index.vue
+++ b/client/pages/item/_id/index.vue
@@ -127,10 +127,6 @@
-
-
-
-
@@ -426,9 +422,6 @@ export default {
})
}
},
- downloadClick() {
- this.$store.commit('showEditModalOnTab', { libraryItem: this.libraryItem, tab: 'download' })
- },
collectionsClick() {
this.$store.commit('setSelectedLibraryItem', this.libraryItem)
this.$store.commit('globals/setShowUserCollectionsModal', true)