diff --git a/src/components/DataExportSection.vue b/src/components/DataExportSection.vue index 9bdc1a9a..be565536 100644 --- a/src/components/DataExportSection.vue +++ b/src/components/DataExportSection.vue @@ -168,7 +168,7 @@ export default class DataExportSection extends Vue { title: "Export Successful", text: this.platformCapabilities.hasFileDownload ? "See your downloads directory for the backup. It is in the Dexie format." - : "Please choose a location to save your backup file.", + : "You should have been prompted to save your backup file.", }, -1, ); diff --git a/src/views/AccountViewView.vue b/src/views/AccountViewView.vue index c7d4dc60..4dc68149 100644 --- a/src/views/AccountViewView.vue +++ b/src/views/AccountViewView.vue @@ -1611,7 +1611,8 @@ export default class AccountViewView extends Vue { async submitImportFile() { if (inputImportFileNameRef.value != null) { await db.delete() - .then(async (x) => { + .then(async () => { + // BulkError: settings.bulkAdd(): 1 of 21 operations failed. Errors: ConstraintError: Key already exists in the object store. await Dexie.import(inputImportFileNameRef.value as Blob, { progressCallback: this.progressCallback, }) diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index e604d7f6..2f080231 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -740,7 +740,7 @@ export default class HomeView extends Vue { * - Displays user notification * * @internal - * Called by mounted() and handleFeedError() + * Called by mounted() * @param err Error object with optional userMessage */ private handleError(err: unknown) {