diff --git a/packages/hoppscotch-app/components/collections/ImportExport.vue b/packages/hoppscotch-app/components/collections/ImportExport.vue index ff7b53007..3198b9818 100644 --- a/packages/hoppscotch-app/components/collections/ImportExport.vue +++ b/packages/hoppscotch-app/components/collections/ImportExport.vue @@ -244,7 +244,7 @@ const createCollectionGist = async () => { return } - getJSONCollection() + await getJSONCollection() try { const res = await axios.$post( @@ -316,8 +316,8 @@ const importToTeams = async (content: HoppCollection) => { importingMyCollections.value = false } -const exportJSON = () => { - getJSONCollection() +const exportJSON = async () => { + await getJSONCollection() const dataToWrite = collectionJson.value const file = new Blob([dataToWrite], { type: "application/json" })