From be9f535911a015e875c5813ec8ab4337c279bc1e Mon Sep 17 00:00:00 2001 From: advplyr Date: Tue, 23 Nov 2021 14:59:20 -0600 Subject: [PATCH] Fix:Create collection url #193 --- client/components/modals/UserCollectionsModal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/modals/UserCollectionsModal.vue b/client/components/modals/UserCollectionsModal.vue index 16e26199..be519c67 100644 --- a/client/components/modals/UserCollectionsModal.vue +++ b/client/components/modals/UserCollectionsModal.vue @@ -137,7 +137,7 @@ export default { name: this.newCollectionName } this.$axios - .$post('/api/collection', newCollection) + .$post('/api/collections', newCollection) .then((data) => { console.log('New Collection Created', data) this.$toast.success(`Collection "${data.name}" created`)