diff --git a/components/collections/import-export-collections.vue b/components/collections/import-export-collections.vue index 924b62f9d..93b91b9fb 100644 --- a/components/collections/import-export-collections.vue +++ b/components/collections/import-export-collections.vue @@ -157,7 +157,7 @@ export default { type: "text/json", }) let anchor = document.createElement("a") - anchor.download = "postwoman-collection.json" + anchor.download = "hoppscotch-collection.json" anchor.href = window.URL.createObjectURL(blob) anchor.target = "_blank" anchor.style.display = "none" diff --git a/components/environments/import-export-environment.vue b/components/environments/import-export-environment.vue index ce82b4d75..876fdf30d 100644 --- a/components/environments/import-export-environment.vue +++ b/components/environments/import-export-environment.vue @@ -158,7 +158,7 @@ export default { type: "text/json", }) let anchor = document.createElement("a") - anchor.download = "postwoman-environment.json" + anchor.download = "hoppscotch-environment.json" anchor.href = window.URL.createObjectURL(blob) anchor.target = "_blank" anchor.style.display = "none"